JBoss Tools SVN: r31322 - in trunk/ws/plugins/org.jboss.tools.ws.creation.ui/src/org/jboss/tools/ws/creation/ui: utils and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: Grid.Qian
Date: 2011-05-15 04:59:40 -0400 (Sun, 15 May 2011)
New Revision: 31322
Added:
trunk/ws/plugins/org.jboss.tools.ws.creation.ui/src/org/jboss/tools/ws/creation/ui/utils/
trunk/ws/plugins/org.jboss.tools.ws.creation.ui/src/org/jboss/tools/ws/creation/ui/utils/JBossCreationUIUtils.java
Modified:
trunk/ws/plugins/org.jboss.tools.ws.creation.ui/src/org/jboss/tools/ws/creation/ui/widgets/Java2WSDLCodeGenConfigWidget.java
trunk/ws/plugins/org.jboss.tools.ws.creation.ui/src/org/jboss/tools/ws/creation/ui/widgets/WSDL2JavaCodeGenConfigWidget.java
Log:
JBIDE-7924: Allow user to create a web service in custom source root
Added: trunk/ws/plugins/org.jboss.tools.ws.creation.ui/src/org/jboss/tools/ws/creation/ui/utils/JBossCreationUIUtils.java
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.creation.ui/src/org/jboss/tools/ws/creation/ui/utils/JBossCreationUIUtils.java (rev 0)
+++ trunk/ws/plugins/org.jboss.tools.ws.creation.ui/src/org/jboss/tools/ws/creation/ui/utils/JBossCreationUIUtils.java 2011-05-15 08:59:40 UTC (rev 31322)
@@ -0,0 +1,69 @@
+package org.jboss.tools.ws.creation.ui.utils;
+
+import org.eclipse.core.resources.IProject;
+import org.eclipse.core.resources.ResourcesPlugin;
+import org.eclipse.jdt.core.IPackageFragmentRoot;
+import org.eclipse.jdt.core.JavaCore;
+import org.eclipse.jdt.core.JavaModelException;
+import org.eclipse.swt.SWT;
+import org.eclipse.swt.events.SelectionAdapter;
+import org.eclipse.swt.events.SelectionEvent;
+import org.eclipse.swt.layout.GridData;
+import org.eclipse.swt.widgets.Combo;
+import org.eclipse.swt.widgets.Composite;
+import org.eclipse.swt.widgets.Event;
+import org.eclipse.swt.widgets.Label;
+import org.eclipse.swt.widgets.Listener;
+import org.jboss.tools.ws.creation.core.data.ServiceModel;
+import org.jboss.tools.ws.creation.core.messages.JBossWSCreationCoreMessages;
+
+public class JBossCreationUIUtils {
+
+ public static Combo createSourceCombo(Composite parent, final ServiceModel model) {
+ final Combo outputDirCombo = new Combo(parent, SWT.READ_ONLY);
+ outputDirCombo.setToolTipText(JBossWSCreationCoreMessages.Tooltip_SourceFolder);
+ outputDirCombo.addListener(SWT.Modify, new Listener(){
+ @Override
+ public void handleEvent(Event arg0) {
+ String javaSourceFolder = outputDirCombo.getText();
+ model.setJavaSourceFolder(javaSourceFolder);
+ }
+
+ });
+
+ populateSourceFolderCombo(outputDirCombo, model.getWebProjectName());
+ return outputDirCombo;
+ }
+
+ public static void populateSourceFolderCombo(Combo outputDirCombo, String projectName) {
+ outputDirCombo.removeAll();
+ try {
+ IProject project = ResourcesPlugin.getWorkspace().getRoot().getProject(projectName);
+ IPackageFragmentRoot[] packageFragmentRoots = JavaCore.create(project).getAllPackageFragmentRoots();
+ for (int i = 0; i < packageFragmentRoots.length; i++) {
+ IPackageFragmentRoot packageFragmentRoot = packageFragmentRoots[i];
+ if (packageFragmentRoot.getKind() == IPackageFragmentRoot.K_SOURCE) {
+ outputDirCombo.add(packageFragmentRoot.getResource().getFullPath().toOSString());
+ }
+ }
+ outputDirCombo.select(0);
+ } catch (JavaModelException jme) {
+ // catch it
+ }
+ }
+
+ public static void createSourceComboLabel(Composite configCom) {
+ final Label srcDirLabel = new Label(configCom, SWT.NONE);
+ srcDirLabel.setText(JBossWSCreationCoreMessages.Label_SourceFolder_Name);
+ srcDirLabel.setToolTipText(JBossWSCreationCoreMessages.Tooltip_SourceFolder);
+ }
+
+ public static void createSourceComboItem(Composite configCom,
+ Combo sourceCombo, ServiceModel model) {
+ JBossCreationUIUtils.createSourceComboLabel(configCom);
+ sourceCombo = JBossCreationUIUtils.createSourceCombo(configCom, model);
+ GridData gd = new GridData(GridData.FILL_HORIZONTAL);
+ gd.horizontalSpan = 2;
+ sourceCombo.setLayoutData(gd);
+ }
+}
Property changes on: trunk/ws/plugins/org.jboss.tools.ws.creation.ui/src/org/jboss/tools/ws/creation/ui/utils/JBossCreationUIUtils.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Modified: trunk/ws/plugins/org.jboss.tools.ws.creation.ui/src/org/jboss/tools/ws/creation/ui/widgets/Java2WSDLCodeGenConfigWidget.java
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.creation.ui/src/org/jboss/tools/ws/creation/ui/widgets/Java2WSDLCodeGenConfigWidget.java 2011-05-15 08:59:01 UTC (rev 31321)
+++ trunk/ws/plugins/org.jboss.tools.ws.creation.ui/src/org/jboss/tools/ws/creation/ui/widgets/Java2WSDLCodeGenConfigWidget.java 2011-05-15 08:59:40 UTC (rev 31322)
@@ -17,12 +17,14 @@
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Button;
+import org.eclipse.swt.widgets.Combo;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Listener;
import org.eclipse.wst.command.internal.env.ui.widgets.SimpleWidgetDataContributor;
import org.eclipse.wst.command.internal.env.ui.widgets.WidgetDataEvents;
import org.jboss.tools.ws.creation.core.data.ServiceModel;
import org.jboss.tools.ws.creation.core.messages.JBossWSCreationCoreMessages;
+import org.jboss.tools.ws.creation.ui.utils.JBossCreationUIUtils;
/**
* @author Grid Qian
@@ -33,6 +35,7 @@
private ServiceModel model;
private Button btnUpdateWebxml;
+ private Combo sourceCombo;
public Java2WSDLCodeGenConfigWidget(ServiceModel model) {
this.model = model;
@@ -46,6 +49,9 @@
GridLayout layout = new GridLayout(2, false);
configCom.setLayout(layout);
configCom.setLayoutData(new GridData(GridData.FILL_BOTH));
+
+ //choose source folder
+ JBossCreationUIUtils.createSourceComboItem(configCom, sourceCombo, model);
final Button wsdlGen = new Button(configCom, SWT.CHECK | SWT.NONE);
GridData wsdlGenData = new GridData();
Modified: trunk/ws/plugins/org.jboss.tools.ws.creation.ui/src/org/jboss/tools/ws/creation/ui/widgets/WSDL2JavaCodeGenConfigWidget.java
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.creation.ui/src/org/jboss/tools/ws/creation/ui/widgets/WSDL2JavaCodeGenConfigWidget.java 2011-05-15 08:59:01 UTC (rev 31321)
+++ trunk/ws/plugins/org.jboss.tools.ws.creation.ui/src/org/jboss/tools/ws/creation/ui/widgets/WSDL2JavaCodeGenConfigWidget.java 2011-05-15 08:59:40 UTC (rev 31322)
@@ -24,6 +24,7 @@
import org.jboss.tools.ws.creation.core.data.ServiceModel;
import org.jboss.tools.ws.creation.core.messages.JBossWSCreationCoreMessages;
import org.jboss.tools.ws.creation.core.utils.JBossWSCreationUtils;
+import org.jboss.tools.ws.creation.ui.utils.JBossCreationUIUtils;
import org.jboss.tools.ws.ui.utils.JBossWSUIUtils;
@SuppressWarnings("restriction")
@@ -44,6 +45,7 @@
private Button btnUpdateWebxml;
private Button btnGenDefaultImpl;
private Button btnExtension;
+ private Combo sourceCombo;
public WSDL2JavaCodeGenConfigWidget(ServiceModel model) {
this.model = model;
@@ -57,6 +59,9 @@
configCom.setLayout(layout);
configCom.setLayoutData(new GridData(GridData.FILL_BOTH));
+ //choose source folder
+ JBossCreationUIUtils.createSourceComboItem(configCom, sourceCombo, model);
+
// custom package name
final Label lblCustomPakage = new Label(configCom, SWT.NONE);
lblCustomPakage
14 years, 11 months
JBoss Tools SVN: r31321 - trunk/ws/tests/org.jboss.tools.ws.creation.core.test/src/org/jboss/tools/ws/creation/core/test/command.
by jbosstools-commits@lists.jboss.org
Author: Grid.Qian
Date: 2011-05-15 04:59:01 -0400 (Sun, 15 May 2011)
New Revision: 31321
Modified:
trunk/ws/tests/org.jboss.tools.ws.creation.core.test/src/org/jboss/tools/ws/creation/core/test/command/JBossWSClientCommandTest.java
trunk/ws/tests/org.jboss.tools.ws.creation.core.test/src/org/jboss/tools/ws/creation/core/test/command/JBossWSJavaFirstCommandTest.java
trunk/ws/tests/org.jboss.tools.ws.creation.core.test/src/org/jboss/tools/ws/creation/core/test/command/JBossWSTopDownCommandTest.java
Log:
JBIDE-7924: Allow user to create a web service in custom source root
Modified: trunk/ws/tests/org.jboss.tools.ws.creation.core.test/src/org/jboss/tools/ws/creation/core/test/command/JBossWSClientCommandTest.java
===================================================================
--- trunk/ws/tests/org.jboss.tools.ws.creation.core.test/src/org/jboss/tools/ws/creation/core/test/command/JBossWSClientCommandTest.java 2011-05-15 08:58:34 UTC (rev 31320)
+++ trunk/ws/tests/org.jboss.tools.ws.creation.core.test/src/org/jboss/tools/ws/creation/core/test/command/JBossWSClientCommandTest.java 2011-05-15 08:59:01 UTC (rev 31321)
@@ -69,6 +69,7 @@
IProject project = fproject.getProject();
// test wsdl2Javacommand
+ model.setJavaSourceFolder("//JBossWSTestProject//src");
WSDL2JavaCommand cmdW2j = new WSDL2JavaCommand(model);
IStatus status = cmdW2j.execute(null, null);
assertFalse(status.getMessage(), Status.ERROR == status.getSeverity());
Modified: trunk/ws/tests/org.jboss.tools.ws.creation.core.test/src/org/jboss/tools/ws/creation/core/test/command/JBossWSJavaFirstCommandTest.java
===================================================================
--- trunk/ws/tests/org.jboss.tools.ws.creation.core.test/src/org/jboss/tools/ws/creation/core/test/command/JBossWSJavaFirstCommandTest.java 2011-05-15 08:58:34 UTC (rev 31320)
+++ trunk/ws/tests/org.jboss.tools.ws.creation.core.test/src/org/jboss/tools/ws/creation/core/test/command/JBossWSJavaFirstCommandTest.java 2011-05-15 08:59:01 UTC (rev 31321)
@@ -119,6 +119,7 @@
public void doJava2WSCommand() throws ExecutionException, CoreException {
model.setGenWSDL(true);
+ model.setJavaSourceFolder("//JavaFirstTestProject//src");
IProject project = fproject.getProject();
Java2WSCommand command = new Java2WSCommand(model);
IStatus status = command.execute(null, null);
Modified: trunk/ws/tests/org.jboss.tools.ws.creation.core.test/src/org/jboss/tools/ws/creation/core/test/command/JBossWSTopDownCommandTest.java
===================================================================
--- trunk/ws/tests/org.jboss.tools.ws.creation.core.test/src/org/jboss/tools/ws/creation/core/test/command/JBossWSTopDownCommandTest.java 2011-05-15 08:58:34 UTC (rev 31320)
+++ trunk/ws/tests/org.jboss.tools.ws.creation.core.test/src/org/jboss/tools/ws/creation/core/test/command/JBossWSTopDownCommandTest.java 2011-05-15 08:59:01 UTC (rev 31321)
@@ -98,6 +98,8 @@
public void doCodeGenerationCommand() throws ExecutionException{
IProject project = fproject.getProject();
+ model.setJavaSourceFolder("//JBossWSTestProject//src");
+
//test wsdl2Javacommand
WSDL2JavaCommand cmdW2j = new WSDL2JavaCommand(model);
IStatus status = cmdW2j.execute(null, null);
14 years, 11 months
JBoss Tools SVN: r31320 - in trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui: wizards and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: Grid.Qian
Date: 2011-05-15 04:58:34 -0400 (Sun, 15 May 2011)
New Revision: 31320
Modified:
trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/utils/JBossWSUIUtils.java
trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/wizards/JBossRSGenerateWizardPage.java
Log:
JBIDE-7924: Allow user to create a web service in custom source root
Modified: trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/utils/JBossWSUIUtils.java
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/utils/JBossWSUIUtils.java 2011-05-14 11:29:49 UTC (rev 31319)
+++ trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/utils/JBossWSUIUtils.java 2011-05-15 08:58:34 UTC (rev 31320)
@@ -67,8 +67,7 @@
IPackageFragmentRoot[] roots = null;
try {
- IResource[] srcFolders = JBossWSCreationUtils
- .getJavaSourceRoots(context.getJavaProject().getProject());
+ IResource[] srcFolders = JBossWSCreationUtils.getJavaSourceRoots(context.getJavaProject());
roots = new IPackageFragmentRoot[srcFolders.length];
int i = 0;
for (IResource src : srcFolders) {
Modified: trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/wizards/JBossRSGenerateWizardPage.java
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/wizards/JBossRSGenerateWizardPage.java 2011-05-14 11:29:49 UTC (rev 31319)
+++ trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/wizards/JBossRSGenerateWizardPage.java 2011-05-15 08:58:34 UTC (rev 31320)
@@ -355,7 +355,7 @@
// no source folder in web project
try {
- if ("" .equals(JBossWSCreationUtils.getJavaProjectSrcLocation(((JBossRSGenerateWizard) this.getWizard()).getProject()))) { //$NON-NLS-1$
+ if ("".equals(JBossWSCreationUtils.getJavaProjectSrcLocation(((JBossRSGenerateWizard) this.getWizard()).getProject()))) { //$NON-NLS-1$
setErrorMessage(JBossWSUIMessages.Error_JBossWS_GenerateWizard_NoSrcInProject);
return false;
}
14 years, 11 months
JBoss Tools SVN: r31319 - branches/jbosstools-3.2.x/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/templates.
by jbosstools-commits@lists.jboss.org
Author: dmaliarevich
Date: 2011-05-14 07:29:49 -0400 (Sat, 14 May 2011)
New Revision: 31319
Modified:
branches/jbosstools-3.2.x/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/templates/vpe-templates-richfaces.xml
Log:
https://issues.jboss.org/browse/JBIDE-8453 , rf4 templates were renamed and reordered.
Modified: branches/jbosstools-3.2.x/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/templates/vpe-templates-richfaces.xml
===================================================================
--- branches/jbosstools-3.2.x/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/templates/vpe-templates-richfaces.xml 2011-05-14 11:21:12 UTC (rev 31318)
+++ branches/jbosstools-3.2.x/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/templates/vpe-templates-richfaces.xml 2011-05-14 11:29:49 UTC (rev 31319)
@@ -2,187 +2,206 @@
<vpe:templates xmlns:vpe="http://org.jboss.org/tools/vpe/template"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <vpe:template-taglib uri="http://richfaces.org/rich" prefix="rich" />
- <vpe:template-taglib uri="http://richfaces.ajax4jsf.org/rich" prefix="rich" />
-
+ <vpe:template-taglib uri="http://richfaces.org/rich"
+ prefix="rich" />
+ <vpe:template-taglib uri="http://richfaces.ajax4jsf.org/rich"
+ prefix="rich" />
- <vpe:tag name="rich:paint2D" case-sensitive="yes">
+
+ <vpe:tag name="rich:accordion" case-sensitive="yes">
<vpe:template children="yes" modify="yes"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPaint2DTemplate">
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelBarTemplate">
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
</vpe:resize>
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="no"></vpe:drop>
+ <vpe:drop container="no" />
</vpe:dnd>
- <vpe:pseudoContent defaultText="no" />
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:gmap" case-sensitive="yes">
- <vpe:template children="no" modify="yes"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesGMapTemplate">
- <vpe:resize>
- <vpe:width width-attr="style.width" />
- <vpe:height height-attr="style.height" />
- </vpe:resize>
+ <vpe:tag name="rich:accordionItem" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelItemTemplate">
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="no"></vpe:drop>
+ <vpe:drop container="yes" />
</vpe:dnd>
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:tree" case-sensitive="yes">
+ <vpe:tag name="rich:ajaxValidator" case-sensitive="yes">
+ <vpe:template children="no" modify="no" />
+ </vpe:tag>
+
+ <!-- Since RichFaces 4.0 -->
+ <vpe:tag name="rich:autocomplete" case-sensitive="yes">
<vpe:template children="yes" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesTreeTemplate">
- <vpe:resize>
- <vpe:width width-attr="style.width" />
- <vpe:height height-attr="style.height" />
- </vpe:resize>
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesAutocompleteTemplate">
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="yes">
- <vpe:container-child tag-name="treeNode" />
- <vpe:container-child tag-name="treeNodesAdaptor" />
- <vpe:container-child tag-name="recursiveTreeNodesAdaptor" />
- </vpe:drop>
+ <vpe:drop container="no" />
</vpe:dnd>
- <vpe:textFormatting use-default-formats="yes">
- <vpe:format type="BlockFormat" addChildren="deny" />
- </vpe:textFormatting>
- <vpe:pseudoContent defaultText="yes" />
</vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:treeNodesAdaptor" case-sensitive="yes">
- <vpe:template children="yes" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesTreeNodesAdaptorTemplate">
+
+ <vpe:tag name="rich:beanValidator" case-sensitive="yes">
+ <vpe:template children="no" modify="no" />
+ </vpe:tag>
+
+ <vpe:tag name="rich:comboBox" case-sensitive="yes">
+ <vpe:template children="no" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesComboBoxTemplate">
+ <vpe:resize>
+ <vpe:width width-attr="width" />
+ </vpe:resize>
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="yes">
- <vpe:container-child tag-name="treeNode" />
+ <vpe:drop container="no">
</vpe:drop>
</vpe:dnd>
</vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:recursiveTreeNodesAdaptor" case-sensitive="yes">
+
+ <vpe:tag name="rich:calendar" case-sensitive="yes">
<vpe:template children="yes" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesRecursiveTreeNodesAdaptorTemplate">
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesCalendarTemplate">
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="yes">
- <vpe:container-child tag-name="treeNode" />
- </vpe:drop>
+ <vpe:drop container="no" />
</vpe:dnd>
</vpe:template>
</vpe:tag>
+ <vpe:tag name="rich:changeExpandListener" case-sensitive="yes">
+ <vpe:template children="no" modify="yes">
+ </vpe:template>
+ </vpe:tag>
+ <vpe:tag name="rich:clientValidator" case-sensitive="yes">
+ <vpe:template children="no" modify="no" />
+ </vpe:tag>
- <vpe:tag name="rich:treeNode" case-sensitive="yes">
- <vpe:template children="yes" modify="yes"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesTreeNodeTemplate">
+ <vpe:tag name="rich:clientId" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:inplaceInput" case-sensitive="yes">
- <vpe:template children="yes" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesInplaceInputTemplate">
+
+ <vpe:tag name="rich:component" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="rich:componentControl" case-sensitive="yes">
+ <vpe:template children="no" modify="yes">
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="rich:collapsiblePanel" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelTemplate">
+ <vpe:resize>
+ <vpe:width width-attr="style.width" />
+ <vpe:height height-attr="style.height" />
+ </vpe:resize>
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="no" />
+ <vpe:drop container="yes" />
</vpe:dnd>
</vpe:template>
- </vpe:tag>
- <vpe:tag name="rich:inplaceSelect" case-sensitive="yes">
+ </vpe:tag>
+
+ <vpe:tag name="rich:colorPicker" case-sensitive="yes">
<vpe:template children="yes" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesInplaceSelectTemplate">
- <!--vpe:resize>
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesColorPickerTemplate">
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="rich:column" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesColumnTemplate">
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="rich:columnGroup" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesColumnGroupTemplate">
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="rich:columns" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesColumnsTemplate">
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="rich:contextMenu" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="rich:dataDefinitionList" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesDataDefinitionListTemplate">
+ <vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
- </vpe:resize-->
+ </vpe:resize>
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="no" />
+ <vpe:drop container="no"></vpe:drop>
</vpe:dnd>
</vpe:template>
- </vpe:tag>
- <vpe:tag name="rich:fileUpload" case-sensitive="yes">
- <vpe:template children="no" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesFileUploadTemplate">
- <vpe:dnd>
- <vpe:drag start-enable="yes" />
- <vpe:drop container="yes" >
- <vpe:container-child tag-name="f:facet" />
- </vpe:drop>
- </vpe:dnd>
- </vpe:template>
- </vpe:tag>
- <vpe:tag name="rich:comboBox" case-sensitive="yes">
- <vpe:template children="no" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesComboBoxTemplate">
+ </vpe:tag>
+
+ <vpe:tag name="rich:dataFilterSlider" case-sensitive="yes">
+ <vpe:template children="yes" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesDataFilterSliderTemplate">
<vpe:resize>
<vpe:width width-attr="width" />
</vpe:resize>
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="no">
- </vpe:drop>
+ <vpe:drop container="no" />
</vpe:dnd>
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:pickList" case-sensitive="yes">
+
+ <vpe:tag name="rich:dataGrid" case-sensitive="yes">
<vpe:template children="yes" modify="yes"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPickListTemplate">
- <vpe:copy attrs="style" />
- <vpe:dnd>
- <vpe:drag start-enable="yes" />
- <vpe:drop container="yes">
- <vpe:container-child tag-name="selectItem" />
- <vpe:container-child tag-name="selectItems" />
- </vpe:drop>
- </vpe:dnd>
- <vpe:textFormatting use-default-formats="yes">
- </vpe:textFormatting>
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesDataGridTemplate">
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:inputNumberSpinner" case-sensitive="yes">
- <vpe:template children="yes" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesInputNumberSpinnerTemplate">
- <vpe:resize>
- <vpe:width width-attr="style.width" />
- <vpe:height height-attr="style.height" />
- </vpe:resize>
+
+ <vpe:tag name="rich:dataList" case-sensitive="yes">
+ <vpe:template
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesDataListTemplate"
+ children="yes" modify="no">
<vpe:dnd>
<vpe:drag start-enable="yes" />
<vpe:drop container="no" />
</vpe:dnd>
- <vpe:pseudoContent defaultText="no"/>
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:columns" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesColumnsTemplate">
- </vpe:template>
- </vpe:tag>
- <vpe:tag name="rich:inputNumberSlider" case-sensitive="yes">
- <vpe:template children="yes" modify="yes"
- class="org.jboss.tools.jsf.vpe.richfaces.template.InputNumberSliderTemplate">
- <vpe:resize>
- <vpe:width width-attr="style.width" />
- </vpe:resize>
+
+ <vpe:tag name="rich:dataOrderedList" case-sensitive="yes">
+ <vpe:template
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesDataOrderedListTemplate"
+ children="yes" modify="no">
<vpe:dnd>
<vpe:drag start-enable="yes" />
<vpe:drop container="no" />
</vpe:dnd>
- <vpe:pseudoContent defaultText="no"/>
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:progressBar" case-sensitive="yes">
+
+ <!-- keep in mind that there is the same template for RF 4.0 rich:dataScroller
+ (below) -->
+ <vpe:tag name="rich:dataScroller" case-sensitive="yes">
<vpe:template children="yes" modify="yes"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesProgressBarTemplate">
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesDataTableScrollerTemplate">
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
@@ -190,59 +209,69 @@
<vpe:dnd>
<vpe:drag start-enable="yes" />
<vpe:drop container="yes">
- <vpe:container-child tag-name="outputText" />
- <vpe:container-child tag-name="facet" />
+ <vpe:container-child tag-name="f:facet" />
</vpe:drop>
</vpe:dnd>
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:dataDefinitionList" case-sensitive="yes">
+ <vpe:tag name="rich:datascroller" case-sensitive="yes">
<vpe:template children="yes" modify="yes"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesDataDefinitionListTemplate">
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesDataTableScrollerTemplate">
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
</vpe:resize>
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="no"></vpe:drop>
+ <vpe:drop container="yes">
+ <vpe:container-child tag-name="f:facet" />
+ </vpe:drop>
</vpe:dnd>
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:modalPanel" case-sensitive="yes">
- <vpe:template children="no" modify="yes" >
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="rich:spacer" case-sensitive="yes">
- <vpe:template children="yes" modify="yes"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesSpacerTemplate">
+ <vpe:tag name="rich:dataTable" case-sensitive="yes">
+ <vpe:template children="yes" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesDataTableTemplate">
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
</vpe:resize>
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="no" />
+ <vpe:drop container="yes">
+ <vpe:container-child tag-name="column" />
+ </vpe:drop>
</vpe:dnd>
- <vpe:textFormatting>
- <vpe:format type="BackgroundColorFormat">
- <vpe:formatAttribute type="style" />
- </vpe:format>
+ <vpe:textFormatting use-default-formats="yes">
+ <vpe:format type="BlockFormat" addChildren="deny" />
</vpe:textFormatting>
- <vpe:pseudoContent defaultText="no"/>
+ <vpe:pseudoContent defaultText="yes" />
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:separator" case-sensitive="yes">
- <vpe:template children="no" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesSeparatorTemplate">
- <vpe:resize>
- <vpe:width width-attr="style.width" />
- <vpe:height height-attr="style.height" />
- </vpe:resize>
+ <vpe:tag name="rich:dndParam" case-sensitive="yes">
+ <vpe:template children="no" modify="no" />
+ </vpe:tag>
+
+ <vpe:tag name="rich:dragIndicator" case-sensitive="yes">
+ <vpe:template children="no" modify="no" />
+ </vpe:tag>
+
+ <vpe:tag name="rich:dragListener" case-sensitive="yes">
+ <vpe:template children="no" modify="yes">
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="rich:dragSupport" case-sensitive="yes">
+ <vpe:template children="no" modify="no" />
+ </vpe:tag>
+
+ <vpe:tag name="rich:dropDownMenu" case-sensitive="yes">
+ <vpe:template
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesDropDownMenuTemplate"
+ children="yes" modify="no">
<vpe:dnd>
<vpe:drag start-enable="yes" />
<vpe:drop container="no" />
@@ -250,619 +279,672 @@
</vpe:template>
</vpe:tag>
+ <vpe:tag name="rich:dropListener" case-sensitive="yes">
+ <vpe:template children="no" modify="yes">
+ </vpe:template>
+ </vpe:tag>
- <!-- keep in mind that there is the same template for RF 4.0 rich:dataScroller (below)-->
- <vpe:tag name="rich:datascroller" case-sensitive="yes">
- <vpe:template children="yes" modify="yes"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesDataTableScrollerTemplate">
+ <vpe:tag name="rich:dropSupport" case-sensitive="yes">
+ <vpe:template children="no" modify="no" />
+ </vpe:tag>
+
+ <!-- Since RichFaces 3.3.0 -->
+ <vpe:tag name="rich:editor" case-sensitive="yes">
+ <vpe:if test="tld_version('min=3.3')">
+ <vpe:template children="no" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesEditorTemplate">
+ <vpe:resize>
+ <vpe:width width-attr="width" />
+ <vpe:height height-attr="height" />
+ </vpe:resize>
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="no" />
+ </vpe:dnd>
+ </vpe:template>
+ </vpe:if>
+ </vpe:tag>
+
+ <vpe:tag name="rich:effect" case-sensitive="yes">
+ <vpe:template children="no" modify="yes">
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="rich:element" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="rich:extendedDataTable" case-sensitive="yes">
+ <vpe:template children="yes" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesExtendedDataTableTemplate">
<vpe:resize>
- <vpe:width width-attr="style.width" />
- <vpe:height height-attr="style.height" />
+ <vpe:width width-attr="width" />
+ <vpe:height height-attr="height" />
</vpe:resize>
<vpe:dnd>
<vpe:drag start-enable="yes" />
<vpe:drop container="yes">
- <vpe:container-child tag-name="f:facet" />
+ <vpe:container-child tag-name="column" />
</vpe:drop>
</vpe:dnd>
+ <vpe:textFormatting use-default-formats="yes">
+ <vpe:format type="BlockFormat" addChildren="deny" />
+ </vpe:textFormatting>
+ <vpe:pseudoContent defaultText="yes" />
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:dataFilterSlider" case-sensitive="yes">
- <vpe:template children="yes" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesDataFilterSliderTemplate">
- <vpe:resize>
- <vpe:width width-attr="width" />
- </vpe:resize>
+ <vpe:tag name="rich:fileUpload" case-sensitive="yes">
+ <vpe:template children="no" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesFileUploadTemplate">
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="no" />
+ <vpe:drop container="yes">
+ <vpe:container-child tag-name="f:facet" />
+ </vpe:drop>
</vpe:dnd>
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:toolBar" case-sensitive="yes" >
- <vpe:template class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesToolBarTemplate"
- children="yes" modify="no">
+ <vpe:tag name="rich:findComponent" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="rich:gmap" case-sensitive="yes">
+ <vpe:template children="no" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesGMapTemplate">
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
</vpe:resize>
<vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="no"/>
- </vpe:dnd>
- </vpe:template>
- </vpe:tag>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="no"></vpe:drop>
+ </vpe:dnd>
+ </vpe:template>
+ </vpe:tag>
- <vpe:tag name="rich:toolBarGroup" case-sensitive="yes" >
- <vpe:template class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesToolBarGroupTemplate"
- children="yes" modify="no">
- <vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="no"/>
- </vpe:dnd>
- </vpe:template>
- </vpe:tag>
+ <vpe:tag name="rich:graphValidator" case-sensitive="yes">
+ <vpe:template children="yes" modify="no" />
+ </vpe:tag>
- <vpe:tag name="rich:toolBarSeparator" case-sensitive="yes" >
- <vpe:template children="no" modify="no" >
- </vpe:template>
+ <vpe:tag name="rich:hotKey" case-sensitive="yes">
+ <vpe:template children="yes" modify="no" />
</vpe:tag>
- <vpe:tag name="rich:dataList" case-sensitive="yes" >
- <vpe:template class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesDataListTemplate"
- children="yes" modify="no">
+ <vpe:tag name="rich:inplaceInput" case-sensitive="yes">
+ <vpe:template children="yes" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesInplaceInputTemplate">
<vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="no"/>
- </vpe:dnd>
- </vpe:template>
- </vpe:tag>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="no" />
+ </vpe:dnd>
+ </vpe:template>
+ </vpe:tag>
- <vpe:tag name="rich:dataOrderedList" case-sensitive="yes" >
- <vpe:template class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesDataOrderedListTemplate"
- children="yes" modify="no">
+ <vpe:tag name="rich:inplaceSelect" case-sensitive="yes">
+ <vpe:template children="yes" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesInplaceSelectTemplate">
+ <!--vpe:resize> <vpe:width width-attr="style.width" /> <vpe:height height-attr="style.height"
+ /> </vpe:resize -->
<vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="no"/>
- </vpe:dnd>
- </vpe:template>
- </vpe:tag>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="no" />
+ </vpe:dnd>
+ </vpe:template>
+ </vpe:tag>
- <vpe:tag name="rich:dataTable" case-sensitive="yes">
- <vpe:template children="yes" modify="no" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesDataTableTemplate">
+ <vpe:tag name="rich:inputNumberSpinner" case-sensitive="yes">
+ <vpe:template children="yes" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesInputNumberSpinnerTemplate">
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
</vpe:resize>
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="yes">
- <vpe:container-child tag-name="column"/>
- </vpe:drop>
+ <vpe:drop container="no" />
</vpe:dnd>
- <vpe:textFormatting use-default-formats="yes">
- <vpe:format type="BlockFormat" addChildren="deny"/>
- </vpe:textFormatting>
- <vpe:pseudoContent defaultText="yes"/>
+ <vpe:pseudoContent defaultText="no" />
</vpe:template>
- </vpe:tag>
-
- <vpe:tag name="rich:scrollableDataTable" case-sensitive="yes">
- <vpe:template children="yes" modify="no" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesScrollableDataTableTemplate">
+ </vpe:tag>
+
+ <vpe:tag name="rich:inputNumberSlider" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.InputNumberSliderTemplate">
<vpe:resize>
- <vpe:width width-attr="width" />
- <vpe:height height-attr="height" />
+ <vpe:width width-attr="style.width" />
</vpe:resize>
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="yes">
- <vpe:container-child tag-name="column"/>
- </vpe:drop>
+ <vpe:drop container="no" />
</vpe:dnd>
- <vpe:textFormatting use-default-formats="yes">
- <vpe:format type="BlockFormat" addChildren="deny"/>
- </vpe:textFormatting>
- <vpe:pseudoContent defaultText="yes"/>
+ <vpe:pseudoContent defaultText="no" />
</vpe:template>
- </vpe:tag>
-
- <vpe:tag name="rich:extendedDataTable" case-sensitive="yes">
- <vpe:template children="yes" modify="no" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesExtendedDataTableTemplate">
- <vpe:resize>
- <vpe:width width-attr="width" />
- <vpe:height height-attr="height" />
- </vpe:resize>
+ </vpe:tag>
+
+ <vpe:tag name="rich:insert" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesInsertTemplate">
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="yes">
- <vpe:container-child tag-name="column"/>
- </vpe:drop>
+ <vpe:drop container="yes" />
</vpe:dnd>
- <vpe:textFormatting use-default-formats="yes">
- <vpe:format type="BlockFormat" addChildren="deny"/>
- </vpe:textFormatting>
- <vpe:pseudoContent defaultText="yes"/>
</vpe:template>
- </vpe:tag>
-
- <vpe:tag name="rich:orderingList" case-sensitive="yes">
- <vpe:template children="yes" modify="no" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesOrderingList">
+ </vpe:tag>
+
+ <vpe:tag name="rich:isUserInRole" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="rich:itemChangeListener" case-sensitive="yes">
+ <vpe:template children="no" modify="yes">
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="rich:jQuery" case-sensitive="yes">
+ <vpe:template children="no" modify="yes">
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="rich:layout" case-sensitive="yes">
+ <vpe:template children="yes" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesLayoutTemplate">
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="rich:layoutPanel" case-sensitive="yes">
+ <vpe:template children="yes" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesLayoutPanelTemplate">
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="rich:list" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesListTemplate">
<vpe:dnd>
<vpe:drag start-enable="yes" />
+ <vpe:drop container="yes" />
+ </vpe:dnd>
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="rich:listShuttle" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesListShuttleTemplate">
+ <vpe:copy attrs="style" />
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
<vpe:drop container="yes">
- <vpe:container-child tag-name="column"/>
+ <vpe:container-child tag-name="column" />
</vpe:drop>
</vpe:dnd>
<vpe:textFormatting use-default-formats="yes">
- <vpe:format type="BlockFormat" addChildren="deny"/>
</vpe:textFormatting>
- <vpe:pseudoContent defaultText="yes"/>
</vpe:template>
- </vpe:tag>
+ </vpe:tag>
- <vpe:tag name="rich:column" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesColumnTemplate">
+ <vpe:tag name="rich:modalPanel" case-sensitive="yes">
+ <vpe:template children="no" modify="yes">
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:columnGroup" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesColumnGroupTemplate">
+ <vpe:tag name="rich:menuItem" case-sensitive="yes">
+ <vpe:template
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesMenuItemTemplate"
+ children="yes" modify="no">
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="no" />
+ </vpe:dnd>
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:subTable" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesSubTableTemplate">
+ <vpe:tag name="rich:menuGroup" case-sensitive="yes">
+ <vpe:template
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesMenuGroupTemplate"
+ children="yes" modify="no">
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="no" />
+ </vpe:dnd>
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:dataGrid" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesDataGridTemplate">
+ <vpe:tag name="rich:menuSeparator" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:collapsiblePanel" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelTemplate">
+ <vpe:tag name="rich:message" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesMessageTemplate">
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
</vpe:resize>
<vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="yes"/>
- </vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="yes" />
+ </vpe:dnd>
</vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:panel" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelTemplate">
+
+ <vpe:tag name="rich:messages" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesMessagesTemplate">
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
</vpe:resize>
<vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="yes"/>
- </vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="yes" />
+ </vpe:dnd>
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:accordion" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelBarTemplate">
- <vpe:resize>
- <vpe:width width-attr="style.width" />
- <vpe:height height-attr="style.height" />
- </vpe:resize>
+ <vpe:tag name="rich:nodeSelectListener" case-sensitive="yes">
+ <vpe:template children="no" modify="yes">
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="rich:orderingList" case-sensitive="yes">
+ <vpe:template children="yes" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesOrderingList">
<vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="no"/>
- </vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="yes">
+ <vpe:container-child tag-name="column" />
+ </vpe:drop>
+ </vpe:dnd>
+ <vpe:textFormatting use-default-formats="yes">
+ <vpe:format type="BlockFormat" addChildren="deny" />
+ </vpe:textFormatting>
+ <vpe:pseudoContent defaultText="yes" />
</vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:accordionItem" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelItemTemplate">
- <vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="yes"/>
- </vpe:dnd>
+
+ <!-- Since RichFaces 3.3.1 -->
+ <vpe:tag name="rich:page" case-sensitive="yes">
+ <vpe:template children="yes" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPageTemplate">
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:panelBar" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelBarTemplate">
+ <vpe:tag name="rich:paint2D" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPaint2DTemplate">
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
</vpe:resize>
<vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="no"/>
- </vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="no"></vpe:drop>
+ </vpe:dnd>
+ <vpe:pseudoContent defaultText="no" />
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:panelBarItem" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelItemTemplate">
- <vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="yes"/>
- </vpe:dnd>
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="rich:simpleTogglePanel" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesSimpleTogglePanelTemplate">
+ <vpe:tag name="rich:panel" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelTemplate">
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
</vpe:resize>
<vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="yes"/>
- </vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="yes" />
+ </vpe:dnd>
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:togglePanel" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesTogglePanelTemplate">
+
+ <vpe:tag name="rich:panelBar" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelBarTemplate">
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
</vpe:resize>
<vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="yes"/>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="no" />
</vpe:dnd>
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:toggleControl" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesToggleControlTemplate">
- <vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="yes"/>
- </vpe:dnd>
+ <vpe:tag name="rich:panelBarItem" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelItemTemplate">
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="yes" />
+ </vpe:dnd>
</vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:togglePanelItem" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesTogglePanelItemTemplate">
- <vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="yes"/>
- </vpe:dnd>
- </vpe:template>
- </vpe:tag>
- <vpe:tag name="rich:tabPanel" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesTabPanelTemplate">
+ <vpe:tag name="rich:panelMenu" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelMenuTemplate">
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
</vpe:resize>
<vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="no"/>
- </vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="yes" />
+ </vpe:dnd>
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:tab" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesTabTemplate">
- <vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="yes"/>
- </vpe:dnd>
+ <vpe:tag name="rich:panelMenuGroup" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelMenuGroupTemplate">
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="yes" />
+ </vpe:dnd>
+ <vpe:textFormatting use-default-formats="yes">
+ </vpe:textFormatting>
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:dndParam" case-sensitive="yes">
- <vpe:template children="no" modify="no" />
+ <vpe:tag name="rich:panelMenuItem" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelMenuItemTemplate">
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="yes" />
+ </vpe:dnd>
+ <vpe:textFormatting use-default-formats="yes">
+ </vpe:textFormatting>
+ </vpe:template>
</vpe:tag>
- <vpe:tag name="rich:dragIndicator" case-sensitive="yes">
- <vpe:template children="no" modify="no" />
+ <vpe:tag name="rich:pickList" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPickListTemplate">
+ <vpe:copy attrs="style" />
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="yes">
+ <vpe:container-child tag-name="selectItem" />
+ <vpe:container-child tag-name="selectItems" />
+ </vpe:drop>
+ </vpe:dnd>
+ <vpe:textFormatting use-default-formats="yes">
+ </vpe:textFormatting>
+ </vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:dragSupport" case-sensitive="yes">
- <vpe:template children="no" modify="no" />
+
+ <vpe:tag name="rich:popupPanel" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
+ </vpe:template>
</vpe:tag>
+
+ <vpe:tag name="rich:progressBar" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesProgressBarTemplate">
+ <vpe:resize>
+ <vpe:width width-attr="style.width" />
+ <vpe:height height-attr="style.height" />
+ </vpe:resize>
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="yes">
+ <vpe:container-child tag-name="outputText" />
+ <vpe:container-child tag-name="facet" />
+ </vpe:drop>
+ </vpe:dnd>
+ </vpe:template>
+ </vpe:tag>
- <vpe:tag name="rich:dropSupport" case-sensitive="yes">
- <vpe:template children="no" modify="no" />
+ <vpe:tag name="rich:recursiveTreeNodesAdaptor" case-sensitive="yes">
+ <vpe:template children="yes" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesRecursiveTreeNodesAdaptorTemplate">
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="yes">
+ <vpe:container-child tag-name="treeNode" />
+ </vpe:drop>
+ </vpe:dnd>
+ </vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:suggestionbox" case-sensitive="yes" >
- <vpe:template children="no" modify="no" />
- </vpe:tag>
- <vpe:tag name="rich:dropDownMenu" case-sensitive="yes" >
- <vpe:template class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesDropDownMenuTemplate"
- children="yes" modify="no">
+ <vpe:tag name="rich:scrollableDataTable" case-sensitive="yes">
+ <vpe:template children="yes" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesScrollableDataTableTemplate">
+ <vpe:resize>
+ <vpe:width width-attr="width" />
+ <vpe:height height-attr="height" />
+ </vpe:resize>
<vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="no"/>
- </vpe:dnd>
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="rich:menuItem" case-sensitive="yes" >
- <vpe:template class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesMenuItemTemplate"
- children="yes" modify="no">
- <vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="no"/>
- </vpe:dnd>
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="rich:menuGroup" case-sensitive="yes" >
- <vpe:template class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesMenuGroupTemplate"
- children="yes" modify="no">
- <vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="no"/>
- </vpe:dnd>
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="rich:menuSeparator" case-sensitive="yes" >
- <vpe:template children="no" modify="no" >
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="rich:contextMenu" case-sensitive="yes" >
- <vpe:template children="no" modify="no" >
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="yes">
+ <vpe:container-child tag-name="column" />
+ </vpe:drop>
+ </vpe:dnd>
+ <vpe:textFormatting use-default-formats="yes">
+ <vpe:format type="BlockFormat" addChildren="deny" />
+ </vpe:textFormatting>
+ <vpe:pseudoContent defaultText="yes" />
</vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:calendar" case-sensitive="yes">
+
+ <vpe:tag name="rich:select" case-sensitive="yes">
<vpe:template children="yes" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesCalendarTemplate">
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesSelectTemplate">
<vpe:dnd>
<vpe:drag start-enable="yes" />
<vpe:drop container="no" />
</vpe:dnd>
</vpe:template>
</vpe:tag>
-
-
- <vpe:tag name="rich:virtualEarth" case-sensitive="yes">
- <vpe:template children="no" modify="yes"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesVirtualEarthTemplate">
-
- <vpe:resize>
- <vpe:width width-attr="style.width" />
+
+ <vpe:tag name="rich:separator" case-sensitive="yes">
+ <vpe:template children="no" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesSeparatorTemplate">
+ <vpe:resize>
+ <vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
</vpe:resize>
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="no"></vpe:drop>
+ <vpe:drop container="no" />
</vpe:dnd>
</vpe:template>
- </vpe:tag>
-
- <vpe:tag name="rich:message" case-sensitive="yes">
- <vpe:template children="yes" modify="yes"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesMessageTemplate">
-
- <vpe:resize>
- <vpe:width width-attr="style.width" />
+ </vpe:tag>
+
+ <vpe:tag name="rich:simpleTogglePanel" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesSimpleTogglePanelTemplate">
+ <vpe:resize>
+ <vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
</vpe:resize>
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="yes"/>
+ <vpe:drop container="yes" />
</vpe:dnd>
</vpe:template>
- </vpe:tag>
-
- <vpe:tag name="rich:messages" case-sensitive="yes">
- <vpe:template children="yes" modify="yes"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesMessagesTemplate">
-
- <vpe:resize>
- <vpe:width width-attr="style.width" />
+ </vpe:tag>
+
+ <vpe:tag name="rich:spacer" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesSpacerTemplate">
+ <vpe:resize>
+ <vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
</vpe:resize>
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="yes"/>
+ <vpe:drop container="no" />
</vpe:dnd>
+ <vpe:textFormatting>
+ <vpe:format type="BackgroundColorFormat">
+ <vpe:formatAttribute type="style" />
+ </vpe:format>
+ </vpe:textFormatting>
+ <vpe:pseudoContent defaultText="no" />
</vpe:template>
- </vpe:tag>
-
- <vpe:tag name="rich:toolTip" case-sensitive="yes">
- <vpe:template children="no" modify="yes" >
- </vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:effect" case-sensitive="yes">
- <vpe:template children="no" modify="yes" >
+
+ <vpe:tag name="rich:subTable" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesSubTableTemplate">
</vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:jQuery" case-sensitive="yes">
- <vpe:template children="no" modify="yes" >
+
+ <vpe:tag name="rich:subTableToggleControl" case-sensitive="yes">
+ <vpe:template children="no" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesSubTableToggleControlTemplate">
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="no" />
+ </vpe:dnd>
</vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:componentControl" case-sensitive="yes">
- <vpe:template children="no" modify="yes" >
- </vpe:template>
+
+ <vpe:tag name="rich:suggestionbox" case-sensitive="yes">
+ <vpe:template children="no" modify="no" />
</vpe:tag>
-
-
- <vpe:tag name="rich:insert" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesInsertTemplate">
+
+ <vpe:tag name="rich:tab" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesTabTemplate">
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="yes"/>
- </vpe:dnd>
+ <vpe:drop container="yes" />
+ </vpe:dnd>
</vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:itemChangeListener" case-sensitive="yes">
- <vpe:template children="no" modify="yes" >
+
+ <vpe:tag name="rich:tabPanel" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesTabPanelTemplate">
+ <vpe:resize>
+ <vpe:width width-attr="style.width" />
+ <vpe:height height-attr="style.height" />
+ </vpe:resize>
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="no" />
+ </vpe:dnd>
</vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:changeExpandListener" case-sensitive="yes">
- <vpe:template children="no" modify="yes" >
+
+ <vpe:tag name="rich:toggleControl" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesToggleControlTemplate">
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="yes" />
+ </vpe:dnd>
</vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:nodeSelectListener" case-sensitive="yes">
- <vpe:template children="no" modify="yes" >
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="rich:dragListener" case-sensitive="yes">
- <vpe:template children="no" modify="yes" >
- </vpe:template>
- </vpe:tag>
- <vpe:tag name="rich:dropListener" case-sensitive="yes">
- <vpe:template children="no" modify="yes" >
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="rich:panelMenuItem" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelMenuItemTemplate">
- <vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="yes"/>
- </vpe:dnd>
- <vpe:textFormatting use-default-formats="yes">
- </vpe:textFormatting>
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="rich:panelMenuGroup" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelMenuGroupTemplate">
- <vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="yes"/>
- </vpe:dnd>
- <vpe:textFormatting use-default-formats="yes">
- </vpe:textFormatting>
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="rich:panelMenu" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelMenuTemplate">
+
+ <vpe:tag name="rich:togglePanel" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesTogglePanelTemplate">
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
</vpe:resize>
<vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="yes"/>
- </vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="yes" />
+ </vpe:dnd>
</vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:listShuttle" case-sensitive="yes">
+
+ <vpe:tag name="rich:togglePanelItem" case-sensitive="yes">
<vpe:template children="yes" modify="yes"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesListShuttleTemplate">
- <vpe:copy attrs="style" />
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesTogglePanelItemTemplate">
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="yes">
- <vpe:container-child tag-name="column" />
- </vpe:drop>
+ <vpe:drop container="yes" />
</vpe:dnd>
- <vpe:textFormatting use-default-formats="yes">
- </vpe:textFormatting>
</vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:ajaxValidator" case-sensitive="yes">
- <vpe:template children="no" modify="no"/>
- </vpe:tag>
-
- <vpe:tag name="rich:beanValidator" case-sensitive="yes">
- <vpe:template children="no" modify="no"/>
- </vpe:tag>
-
- <vpe:tag name="rich:graphValidator" case-sensitive="yes">
- <vpe:template children="yes" modify="no"/>
- </vpe:tag>
-
- <vpe:tag name="rich:clientValidator" case-sensitive="yes">
- <vpe:template children="no" modify="no"/>
- </vpe:tag>
-
- <vpe:tag name="rich:hotKey" case-sensitive="yes">
- <vpe:template children="yes" modify="no"/>
- </vpe:tag>
- <!-- Since RichFaces 3.3.0 -->
- <vpe:tag name="rich:editor" case-sensitive="yes">
- <vpe:if test="tld_version('min=3.3')">
- <vpe:template children="no" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesEditorTemplate">
- <vpe:resize>
- <vpe:width width-attr="width" />
- <vpe:height height-attr="height" />
- </vpe:resize>
- <vpe:dnd>
- <vpe:drag start-enable="yes" />
- <vpe:drop container="no"/>
- </vpe:dnd>
- </vpe:template>
- </vpe:if>
- </vpe:tag>
-
- <!-- Since RichFaces 3.3.1 -->
- <vpe:tag name="rich:page" case-sensitive="yes">
- <vpe:template children="yes" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPageTemplate">
+ <vpe:tag name="rich:toolBar" case-sensitive="yes">
+ <vpe:template
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesToolBarTemplate"
+ children="yes" modify="no">
+ <vpe:resize>
+ <vpe:width width-attr="style.width" />
+ <vpe:height height-attr="style.height" />
+ </vpe:resize>
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="no" />
+ </vpe:dnd>
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:layout" case-sensitive="yes">
- <vpe:template children="yes" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesLayoutTemplate">
+ <vpe:tag name="rich:toolbar" case-sensitive="yes">
+ <vpe:template
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesToolBarTemplate"
+ children="yes" modify="no">
+ <vpe:resize>
+ <vpe:width width-attr="style.width" />
+ <vpe:height height-attr="style.height" />
+ </vpe:resize>
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="no" />
+ </vpe:dnd>
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:layoutPanel" case-sensitive="yes">
- <vpe:template children="yes" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesLayoutPanelTemplate">
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="rich:colorPicker" case-sensitive="yes">
- <vpe:template children="yes" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesColorPickerTemplate">
- </vpe:template>
- </vpe:tag>
-
- <!-- Since RichFaces 4.0 -->
- <vpe:tag name="rich:autocomplete" case-sensitive="yes">
- <vpe:template children="yes" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesAutocompleteTemplate">
+ <vpe:tag name="rich:toolBarGroup" case-sensitive="yes">
+ <vpe:template
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesToolBarGroupTemplate"
+ children="yes" modify="no">
<vpe:dnd>
<vpe:drag start-enable="yes" />
<vpe:drop container="no" />
</vpe:dnd>
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:select" case-sensitive="yes">
- <vpe:template children="yes" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesSelectTemplate">
+
+ <vpe:tag name="rich:toolbarGroup" case-sensitive="yes">
+ <vpe:template
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesToolBarGroupTemplate"
+ children="yes" modify="no">
<vpe:dnd>
<vpe:drag start-enable="yes" />
<vpe:drop container="no" />
</vpe:dnd>
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:dataScroller" case-sensitive="yes">
- <vpe:template children="yes" modify="yes"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesDataTableScrollerTemplate">
+
+ <vpe:tag name="rich:toolBarSeparator" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="rich:toolTip" case-sensitive="yes">
+ <vpe:template children="no" modify="yes">
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="rich:tooltip" case-sensitive="yes">
+ <vpe:template children="no" modify="yes">
+ </vpe:template>
+ </vpe:tag>
+
+
+ <vpe:tag name="rich:tree" case-sensitive="yes">
+ <vpe:template children="yes" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesTreeTemplate">
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
@@ -870,53 +952,48 @@
<vpe:dnd>
<vpe:drag start-enable="yes" />
<vpe:drop container="yes">
- <vpe:container-child tag-name="f:facet" />
+ <vpe:container-child tag-name="treeNode" />
+ <vpe:container-child tag-name="treeNodesAdaptor" />
+ <vpe:container-child tag-name="recursiveTreeNodesAdaptor" />
</vpe:drop>
</vpe:dnd>
+ <vpe:textFormatting use-default-formats="yes">
+ <vpe:format type="BlockFormat" addChildren="deny" />
+ </vpe:textFormatting>
+ <vpe:pseudoContent defaultText="yes" />
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:subTableToggleControl" case-sensitive="yes">
- <vpe:template children="no" modify="yes"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesSubTableToggleControlTemplate">
+
+ <vpe:tag name="rich:treeNode" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesTreeNodeTemplate">
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="rich:treeNodesAdaptor" case-sensitive="yes">
+ <vpe:template children="yes" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesTreeNodesAdaptorTemplate">
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="no"/>
+ <vpe:drop container="yes">
+ <vpe:container-child tag-name="treeNode" />
+ </vpe:drop>
</vpe:dnd>
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:list" case-sensitive="yes">
- <vpe:template children="yes" modify="yes"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesListTemplate">
+
+ <vpe:tag name="rich:virtualEarth" case-sensitive="yes">
+ <vpe:template children="no" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesVirtualEarthTemplate">
+ <vpe:resize>
+ <vpe:width width-attr="style.width" />
+ <vpe:height height-attr="style.height" />
+ </vpe:resize>
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="yes"/>
+ <vpe:drop container="no"></vpe:drop>
</vpe:dnd>
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:clientId" case-sensitive="yes">
- <vpe:template children="no" modify="no">
- </vpe:template>
- </vpe:tag>
- <vpe:tag name="rich:component" case-sensitive="yes">
- <vpe:template children="no" modify="no">
- </vpe:template>
- </vpe:tag>
- <vpe:tag name="rich:element" case-sensitive="yes">
- <vpe:template children="no" modify="no">
- </vpe:template>
- </vpe:tag>
- <vpe:tag name="rich:findComponent" case-sensitive="yes">
- <vpe:template children="no" modify="no">
- </vpe:template>
- </vpe:tag>
- <vpe:tag name="rich:isUserInRole" case-sensitive="yes">
- <vpe:template children="no" modify="no">
- </vpe:template>
- </vpe:tag>
- <vpe:tag name="rich:popupPanel" case-sensitive="yes" >
- <vpe:template children="no" modify="no" >
- </vpe:template>
- </vpe:tag>
-
</vpe:templates>
\ No newline at end of file
14 years, 11 months
JBoss Tools SVN: r31318 - trunk/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/templates.
by jbosstools-commits@lists.jboss.org
Author: dmaliarevich
Date: 2011-05-14 07:21:12 -0400 (Sat, 14 May 2011)
New Revision: 31318
Modified:
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/templates/vpe-templates-richfaces.xml
Log:
https://issues.jboss.org/browse/JBIDE-8453 , rf4 templates were reordered.
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/templates/vpe-templates-richfaces.xml
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/templates/vpe-templates-richfaces.xml 2011-05-14 00:49:49 UTC (rev 31317)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/templates/vpe-templates-richfaces.xml 2011-05-14 11:21:12 UTC (rev 31318)
@@ -2,206 +2,146 @@
<vpe:templates xmlns:vpe="http://org.jboss.org/tools/vpe/template"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <vpe:template-taglib uri="http://richfaces.org/rich" prefix="rich" />
- <vpe:template-taglib uri="http://richfaces.ajax4jsf.org/rich" prefix="rich" />
-
+ <vpe:template-taglib uri="http://richfaces.org/rich"
+ prefix="rich" />
+ <vpe:template-taglib uri="http://richfaces.ajax4jsf.org/rich"
+ prefix="rich" />
- <vpe:tag name="rich:paint2D" case-sensitive="yes">
+
+ <vpe:tag name="rich:accordion" case-sensitive="yes">
<vpe:template children="yes" modify="yes"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPaint2DTemplate">
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelBarTemplate">
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
</vpe:resize>
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="no"></vpe:drop>
+ <vpe:drop container="no" />
</vpe:dnd>
- <vpe:pseudoContent defaultText="no" />
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:gmap" case-sensitive="yes">
- <vpe:template children="no" modify="yes"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesGMapTemplate">
- <vpe:resize>
- <vpe:width width-attr="style.width" />
- <vpe:height height-attr="style.height" />
- </vpe:resize>
+ <vpe:tag name="rich:accordionItem" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelItemTemplate">
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="no"></vpe:drop>
+ <vpe:drop container="yes" />
</vpe:dnd>
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:tree" case-sensitive="yes">
+ <vpe:tag name="rich:ajaxValidator" case-sensitive="yes">
+ <vpe:template children="no" modify="no" />
+ </vpe:tag>
+
+ <!-- Since RichFaces 4.0 -->
+ <vpe:tag name="rich:autocomplete" case-sensitive="yes">
<vpe:template children="yes" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesTreeTemplate">
- <vpe:resize>
- <vpe:width width-attr="style.width" />
- <vpe:height height-attr="style.height" />
- </vpe:resize>
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesAutocompleteTemplate">
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="yes">
- <vpe:container-child tag-name="treeNode" />
- <vpe:container-child tag-name="treeNodesAdaptor" />
- <vpe:container-child tag-name="recursiveTreeNodesAdaptor" />
- </vpe:drop>
+ <vpe:drop container="no" />
</vpe:dnd>
- <vpe:textFormatting use-default-formats="yes">
- <vpe:format type="BlockFormat" addChildren="deny" />
- </vpe:textFormatting>
- <vpe:pseudoContent defaultText="yes" />
</vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:treeNodesAdaptor" case-sensitive="yes">
- <vpe:template children="yes" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesTreeNodesAdaptorTemplate">
+
+ <vpe:tag name="rich:beanValidator" case-sensitive="yes">
+ <vpe:template children="no" modify="no" />
+ </vpe:tag>
+
+ <vpe:tag name="rich:comboBox" case-sensitive="yes">
+ <vpe:template children="no" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesComboBoxTemplate">
+ <vpe:resize>
+ <vpe:width width-attr="width" />
+ </vpe:resize>
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="yes">
- <vpe:container-child tag-name="treeNode" />
+ <vpe:drop container="no">
</vpe:drop>
</vpe:dnd>
</vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:recursiveTreeNodesAdaptor" case-sensitive="yes">
+
+ <vpe:tag name="rich:calendar" case-sensitive="yes">
<vpe:template children="yes" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesRecursiveTreeNodesAdaptorTemplate">
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesCalendarTemplate">
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="yes">
- <vpe:container-child tag-name="treeNode" />
- </vpe:drop>
+ <vpe:drop container="no" />
</vpe:dnd>
</vpe:template>
</vpe:tag>
+ <vpe:tag name="rich:changeExpandListener" case-sensitive="yes">
+ <vpe:template children="no" modify="yes">
+ </vpe:template>
+ </vpe:tag>
+ <vpe:tag name="rich:clientValidator" case-sensitive="yes">
+ <vpe:template children="no" modify="no" />
+ </vpe:tag>
- <vpe:tag name="rich:treeNode" case-sensitive="yes">
- <vpe:template children="yes" modify="yes"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesTreeNodeTemplate">
+ <vpe:tag name="rich:clientId" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:inplaceInput" case-sensitive="yes">
- <vpe:template children="yes" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesInplaceInputTemplate">
- <vpe:dnd>
- <vpe:drag start-enable="yes" />
- <vpe:drop container="no" />
- </vpe:dnd>
+
+ <vpe:tag name="rich:component" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
</vpe:template>
- </vpe:tag>
- <vpe:tag name="rich:inplaceSelect" case-sensitive="yes">
- <vpe:template children="yes" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesInplaceSelectTemplate">
- <!--vpe:resize>
- <vpe:width width-attr="style.width" />
- <vpe:height height-attr="style.height" />
- </vpe:resize-->
- <vpe:dnd>
- <vpe:drag start-enable="yes" />
- <vpe:drop container="no" />
- </vpe:dnd>
+ </vpe:tag>
+
+ <vpe:tag name="rich:componentControl" case-sensitive="yes">
+ <vpe:template children="no" modify="yes">
</vpe:template>
- </vpe:tag>
- <vpe:tag name="rich:fileUpload" case-sensitive="yes">
- <vpe:template children="no" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesFileUploadTemplate">
- <vpe:dnd>
- <vpe:drag start-enable="yes" />
- <vpe:drop container="yes" >
- <vpe:container-child tag-name="f:facet" />
- </vpe:drop>
- </vpe:dnd>
- </vpe:template>
- </vpe:tag>
- <vpe:tag name="rich:comboBox" case-sensitive="yes">
- <vpe:template children="no" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesComboBoxTemplate">
- <vpe:resize>
- <vpe:width width-attr="width" />
- </vpe:resize>
- <vpe:dnd>
- <vpe:drag start-enable="yes" />
- <vpe:drop container="no">
- </vpe:drop>
- </vpe:dnd>
- </vpe:template>
</vpe:tag>
- <vpe:tag name="rich:pickList" case-sensitive="yes">
+
+ <vpe:tag name="rich:collapsiblePanel" case-sensitive="yes">
<vpe:template children="yes" modify="yes"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPickListTemplate">
- <vpe:copy attrs="style" />
- <vpe:dnd>
- <vpe:drag start-enable="yes" />
- <vpe:drop container="yes">
- <vpe:container-child tag-name="selectItem" />
- <vpe:container-child tag-name="selectItems" />
- </vpe:drop>
- </vpe:dnd>
- <vpe:textFormatting use-default-formats="yes">
- </vpe:textFormatting>
- </vpe:template>
- </vpe:tag>
- <vpe:tag name="rich:inputNumberSpinner" case-sensitive="yes">
- <vpe:template children="yes" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesInputNumberSpinnerTemplate">
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelTemplate">
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
</vpe:resize>
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="no" />
+ <vpe:drop container="yes" />
</vpe:dnd>
- <vpe:pseudoContent defaultText="no"/>
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:columns" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesColumnsTemplate">
+
+ <vpe:tag name="rich:colorPicker" case-sensitive="yes">
+ <vpe:template children="yes" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesColorPickerTemplate">
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:inputNumberSlider" case-sensitive="yes">
+
+ <vpe:tag name="rich:column" case-sensitive="yes">
<vpe:template children="yes" modify="yes"
- class="org.jboss.tools.jsf.vpe.richfaces.template.InputNumberSliderTemplate">
- <vpe:resize>
- <vpe:width width-attr="style.width" />
- </vpe:resize>
- <vpe:dnd>
- <vpe:drag start-enable="yes" />
- <vpe:drop container="no" />
- </vpe:dnd>
- <vpe:pseudoContent defaultText="no"/>
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesColumnTemplate">
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:progressBar" case-sensitive="yes">
+
+ <vpe:tag name="rich:columnGroup" case-sensitive="yes">
<vpe:template children="yes" modify="yes"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesProgressBarTemplate">
- <vpe:resize>
- <vpe:width width-attr="style.width" />
- <vpe:height height-attr="style.height" />
- </vpe:resize>
- <vpe:dnd>
- <vpe:drag start-enable="yes" />
- <vpe:drop container="yes">
- <vpe:container-child tag-name="outputText" />
- <vpe:container-child tag-name="facet" />
- </vpe:drop>
- </vpe:dnd>
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesColumnGroupTemplate">
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:modalPanel" case-sensitive="yes">
- <vpe:template children="no" modify="yes" >
+ <vpe:tag name="rich:columns" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesColumnsTemplate">
</vpe:template>
</vpe:tag>
-
+
+ <vpe:tag name="rich:contextMenu" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
+ </vpe:template>
+ </vpe:tag>
+
<vpe:tag name="rich:dataDefinitionList" case-sensitive="yes">
<vpe:template children="yes" modify="yes"
class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesDataDefinitionListTemplate">
@@ -215,7 +155,7 @@
</vpe:dnd>
</vpe:template>
</vpe:tag>
-
+
<vpe:tag name="rich:dataFilterSlider" case-sensitive="yes">
<vpe:template children="yes" modify="no"
class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesDataFilterSliderTemplate">
@@ -228,33 +168,37 @@
</vpe:dnd>
</vpe:template>
</vpe:tag>
-
+
<vpe:tag name="rich:dataGrid" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesDataGridTemplate">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesDataGridTemplate">
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:dataList" case-sensitive="yes" >
- <vpe:template class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesDataListTemplate"
- children="yes" modify="no">
+ <vpe:tag name="rich:dataList" case-sensitive="yes">
+ <vpe:template
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesDataListTemplate"
+ children="yes" modify="no">
<vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="no"/>
- </vpe:dnd>
- </vpe:template>
- </vpe:tag>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="no" />
+ </vpe:dnd>
+ </vpe:template>
+ </vpe:tag>
- <vpe:tag name="rich:dataOrderedList" case-sensitive="yes" >
- <vpe:template class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesDataOrderedListTemplate"
- children="yes" modify="no">
+ <vpe:tag name="rich:dataOrderedList" case-sensitive="yes">
+ <vpe:template
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesDataOrderedListTemplate"
+ children="yes" modify="no">
<vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="no"/>
- </vpe:dnd>
- </vpe:template>
- </vpe:tag>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="no" />
+ </vpe:dnd>
+ </vpe:template>
+ </vpe:tag>
- <!-- keep in mind that there is the same template for RF 4.0 rich:dataScroller (below)-->
+ <!-- keep in mind that there is the same template for RF 4.0 rich:dataScroller
+ (below) -->
<vpe:tag name="rich:dataScroller" case-sensitive="yes">
<vpe:template children="yes" modify="yes"
class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesDataTableScrollerTemplate">
@@ -270,7 +214,7 @@
</vpe:dnd>
</vpe:template>
</vpe:tag>
-
+
<vpe:tag name="rich:datascroller" case-sensitive="yes">
<vpe:template children="yes" modify="yes"
class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesDataTableScrollerTemplate">
@@ -287,8 +231,9 @@
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:dataTable" case-sensitive="yes">
- <vpe:template children="yes" modify="no" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesDataTableTemplate">
+ <vpe:tag name="rich:dataTable" case-sensitive="yes">
+ <vpe:template children="yes" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesDataTableTemplate">
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
@@ -296,54 +241,83 @@
<vpe:dnd>
<vpe:drag start-enable="yes" />
<vpe:drop container="yes">
- <vpe:container-child tag-name="column"/>
+ <vpe:container-child tag-name="column" />
</vpe:drop>
</vpe:dnd>
<vpe:textFormatting use-default-formats="yes">
- <vpe:format type="BlockFormat" addChildren="deny"/>
+ <vpe:format type="BlockFormat" addChildren="deny" />
</vpe:textFormatting>
- <vpe:pseudoContent defaultText="yes"/>
+ <vpe:pseudoContent defaultText="yes" />
</vpe:template>
- </vpe:tag>
+ </vpe:tag>
<vpe:tag name="rich:dndParam" case-sensitive="yes">
- <vpe:template children="no" modify="no" />
+ <vpe:template children="no" modify="no" />
</vpe:tag>
<vpe:tag name="rich:dragIndicator" case-sensitive="yes">
- <vpe:template children="no" modify="no" />
+ <vpe:template children="no" modify="no" />
</vpe:tag>
<vpe:tag name="rich:dragListener" case-sensitive="yes">
- <vpe:template children="no" modify="yes" >
+ <vpe:template children="no" modify="yes">
</vpe:template>
</vpe:tag>
<vpe:tag name="rich:dragSupport" case-sensitive="yes">
- <vpe:template children="no" modify="no" />
+ <vpe:template children="no" modify="no" />
</vpe:tag>
- <vpe:tag name="rich:dropDownMenu" case-sensitive="yes" >
- <vpe:template class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesDropDownMenuTemplate"
- children="yes" modify="no">
+ <vpe:tag name="rich:dropDownMenu" case-sensitive="yes">
+ <vpe:template
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesDropDownMenuTemplate"
+ children="yes" modify="no">
<vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="no"/>
- </vpe:dnd>
- </vpe:template>
- </vpe:tag>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="no" />
+ </vpe:dnd>
+ </vpe:template>
+ </vpe:tag>
<vpe:tag name="rich:dropListener" case-sensitive="yes">
- <vpe:template children="no" modify="yes" >
+ <vpe:template children="no" modify="yes">
</vpe:template>
- </vpe:tag>
-
+ </vpe:tag>
+
<vpe:tag name="rich:dropSupport" case-sensitive="yes">
- <vpe:template children="no" modify="no" />
+ <vpe:template children="no" modify="no" />
</vpe:tag>
- <vpe:tag name="rich:scrollableDataTable" case-sensitive="yes">
- <vpe:template children="yes" modify="no" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesScrollableDataTableTemplate">
+ <!-- Since RichFaces 3.3.0 -->
+ <vpe:tag name="rich:editor" case-sensitive="yes">
+ <vpe:if test="tld_version('min=3.3')">
+ <vpe:template children="no" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesEditorTemplate">
+ <vpe:resize>
+ <vpe:width width-attr="width" />
+ <vpe:height height-attr="height" />
+ </vpe:resize>
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="no" />
+ </vpe:dnd>
+ </vpe:template>
+ </vpe:if>
+ </vpe:tag>
+
+ <vpe:tag name="rich:effect" case-sensitive="yes">
+ <vpe:template children="no" modify="yes">
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="rich:element" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="rich:extendedDataTable" case-sensitive="yes">
+ <vpe:template children="yes" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesExtendedDataTableTemplate">
<vpe:resize>
<vpe:width width-attr="width" />
<vpe:height height-attr="height" />
@@ -351,562 +325,626 @@
<vpe:dnd>
<vpe:drag start-enable="yes" />
<vpe:drop container="yes">
- <vpe:container-child tag-name="column"/>
+ <vpe:container-child tag-name="column" />
</vpe:drop>
</vpe:dnd>
<vpe:textFormatting use-default-formats="yes">
- <vpe:format type="BlockFormat" addChildren="deny"/>
+ <vpe:format type="BlockFormat" addChildren="deny" />
</vpe:textFormatting>
- <vpe:pseudoContent defaultText="yes"/>
+ <vpe:pseudoContent defaultText="yes" />
</vpe:template>
- </vpe:tag>
+ </vpe:tag>
- <vpe:tag name="rich:separator" case-sensitive="yes">
+ <vpe:tag name="rich:fileUpload" case-sensitive="yes">
<vpe:template children="no" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesSeparatorTemplate">
- <vpe:resize>
- <vpe:width width-attr="style.width" />
- <vpe:height height-attr="style.height" />
- </vpe:resize>
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesFileUploadTemplate">
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="no" />
+ <vpe:drop container="yes">
+ <vpe:container-child tag-name="f:facet" />
+ </vpe:drop>
</vpe:dnd>
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:simpleTogglePanel" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesSimpleTogglePanelTemplate">
- <vpe:resize>
- <vpe:width width-attr="style.width" />
- <vpe:height height-attr="style.height" />
- </vpe:resize>
- <vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="yes"/>
- </vpe:dnd>
+ <vpe:tag name="rich:findComponent" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:spacer" case-sensitive="yes">
- <vpe:template children="yes" modify="yes"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesSpacerTemplate">
+ <vpe:tag name="rich:gmap" case-sensitive="yes">
+ <vpe:template children="no" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesGMapTemplate">
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
</vpe:resize>
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="no" />
+ <vpe:drop container="no"></vpe:drop>
</vpe:dnd>
- <vpe:textFormatting>
- <vpe:format type="BackgroundColorFormat">
- <vpe:formatAttribute type="style" />
- </vpe:format>
- </vpe:textFormatting>
- <vpe:pseudoContent defaultText="no"/>
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:subTable" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesSubTableTemplate">
- </vpe:template>
+ <vpe:tag name="rich:graphValidator" case-sensitive="yes">
+ <vpe:template children="yes" modify="no" />
</vpe:tag>
-
- <vpe:tag name="rich:suggestionbox" case-sensitive="yes" >
- <vpe:template children="no" modify="no" />
- </vpe:tag>
- <vpe:tag name="rich:tabPanel" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesTabPanelTemplate">
- <vpe:resize>
- <vpe:width width-attr="style.width" />
- <vpe:height height-attr="style.height" />
- </vpe:resize>
+ <vpe:tag name="rich:hotKey" case-sensitive="yes">
+ <vpe:template children="yes" modify="no" />
+ </vpe:tag>
+
+ <vpe:tag name="rich:inplaceInput" case-sensitive="yes">
+ <vpe:template children="yes" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesInplaceInputTemplate">
<vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="no"/>
- </vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="no" />
+ </vpe:dnd>
</vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:toggleControl" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesToggleControlTemplate">
- <vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="yes"/>
- </vpe:dnd>
+
+ <vpe:tag name="rich:inplaceSelect" case-sensitive="yes">
+ <vpe:template children="yes" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesInplaceSelectTemplate">
+ <!--vpe:resize> <vpe:width width-attr="style.width" /> <vpe:height height-attr="style.height"
+ /> </vpe:resize -->
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="no" />
+ </vpe:dnd>
</vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:togglePanel" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesTogglePanelTemplate">
+
+ <vpe:tag name="rich:inputNumberSpinner" case-sensitive="yes">
+ <vpe:template children="yes" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesInputNumberSpinnerTemplate">
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
</vpe:resize>
<vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="yes"/>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="no" />
</vpe:dnd>
+ <vpe:pseudoContent defaultText="no" />
</vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:togglePanelItem" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesTogglePanelItemTemplate">
- <vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="yes"/>
- </vpe:dnd>
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="rich:toolBar" case-sensitive="yes" >
- <vpe:template class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesToolBarTemplate"
- children="yes" modify="no">
- <vpe:resize>
- <vpe:width width-attr="style.width" />
- <vpe:height height-attr="style.height" />
- </vpe:resize>
- <vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="no"/>
- </vpe:dnd>
- </vpe:template>
- </vpe:tag>
- <vpe:tag name="rich:toolbar" case-sensitive="yes" >
- <vpe:template class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesToolBarTemplate"
- children="yes" modify="no">
+ <vpe:tag name="rich:inputNumberSlider" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.InputNumberSliderTemplate">
<vpe:resize>
<vpe:width width-attr="style.width" />
- <vpe:height height-attr="style.height" />
</vpe:resize>
<vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="no"/>
- </vpe:dnd>
- </vpe:template>
- </vpe:tag>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="no" />
+ </vpe:dnd>
+ <vpe:pseudoContent defaultText="no" />
+ </vpe:template>
+ </vpe:tag>
- <vpe:tag name="rich:toolBarGroup" case-sensitive="yes" >
- <vpe:template class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesToolBarGroupTemplate"
- children="yes" modify="no">
+ <vpe:tag name="rich:insert" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesInsertTemplate">
<vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="no"/>
- </vpe:dnd>
- </vpe:template>
- </vpe:tag>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="yes" />
+ </vpe:dnd>
+ </vpe:template>
+ </vpe:tag>
- <vpe:tag name="rich:toolbarGroup" case-sensitive="yes" >
- <vpe:template class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesToolBarGroupTemplate"
- children="yes" modify="no">
- <vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="no"/>
- </vpe:dnd>
- </vpe:template>
- </vpe:tag>
+ <vpe:tag name="rich:isUserInRole" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
+ </vpe:template>
+ </vpe:tag>
- <vpe:tag name="rich:toolBarSeparator" case-sensitive="yes" >
- <vpe:template children="no" modify="no" >
+ <vpe:tag name="rich:itemChangeListener" case-sensitive="yes">
+ <vpe:template children="no" modify="yes">
</vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:toolTip" case-sensitive="yes">
- <vpe:template children="no" modify="yes" >
+
+ <vpe:tag name="rich:jQuery" case-sensitive="yes">
+ <vpe:template children="no" modify="yes">
</vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:tooltip" case-sensitive="yes">
- <vpe:template children="no" modify="yes" >
+
+ <vpe:tag name="rich:layout" case-sensitive="yes">
+ <vpe:template children="yes" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesLayoutTemplate">
</vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:extendedDataTable" case-sensitive="yes">
- <vpe:template children="yes" modify="no" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesExtendedDataTableTemplate">
- <vpe:resize>
- <vpe:width width-attr="width" />
- <vpe:height height-attr="height" />
- </vpe:resize>
+
+ <vpe:tag name="rich:layoutPanel" case-sensitive="yes">
+ <vpe:template children="yes" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesLayoutPanelTemplate">
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="rich:list" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesListTemplate">
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="yes">
- <vpe:container-child tag-name="column"/>
- </vpe:drop>
+ <vpe:drop container="yes" />
</vpe:dnd>
- <vpe:textFormatting use-default-formats="yes">
- <vpe:format type="BlockFormat" addChildren="deny"/>
- </vpe:textFormatting>
- <vpe:pseudoContent defaultText="yes"/>
</vpe:template>
- </vpe:tag>
-
- <vpe:tag name="rich:orderingList" case-sensitive="yes">
- <vpe:template children="yes" modify="no" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesOrderingList">
+ </vpe:tag>
+
+ <vpe:tag name="rich:listShuttle" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesListShuttleTemplate">
+ <vpe:copy attrs="style" />
<vpe:dnd>
<vpe:drag start-enable="yes" />
<vpe:drop container="yes">
- <vpe:container-child tag-name="column"/>
+ <vpe:container-child tag-name="column" />
</vpe:drop>
</vpe:dnd>
<vpe:textFormatting use-default-formats="yes">
- <vpe:format type="BlockFormat" addChildren="deny"/>
</vpe:textFormatting>
- <vpe:pseudoContent defaultText="yes"/>
</vpe:template>
- </vpe:tag>
+ </vpe:tag>
- <vpe:tag name="rich:column" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesColumnTemplate">
+ <vpe:tag name="rich:modalPanel" case-sensitive="yes">
+ <vpe:template children="no" modify="yes">
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:columnGroup" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesColumnGroupTemplate">
+ <vpe:tag name="rich:menuItem" case-sensitive="yes">
+ <vpe:template
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesMenuItemTemplate"
+ children="yes" modify="no">
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="no" />
+ </vpe:dnd>
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:collapsiblePanel" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelTemplate">
- <vpe:resize>
- <vpe:width width-attr="style.width" />
- <vpe:height height-attr="style.height" />
- </vpe:resize>
+ <vpe:tag name="rich:menuGroup" case-sensitive="yes">
+ <vpe:template
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesMenuGroupTemplate"
+ children="yes" modify="no">
<vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="yes"/>
- </vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="no" />
+ </vpe:dnd>
</vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:panel" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelTemplate">
- <vpe:resize>
- <vpe:width width-attr="style.width" />
- <vpe:height height-attr="style.height" />
- </vpe:resize>
- <vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="yes"/>
- </vpe:dnd>
+
+ <vpe:tag name="rich:menuSeparator" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:accordion" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelBarTemplate">
+ <vpe:tag name="rich:message" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesMessageTemplate">
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
</vpe:resize>
<vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="no"/>
- </vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="yes" />
+ </vpe:dnd>
</vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:accordionItem" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelItemTemplate">
- <vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="yes"/>
- </vpe:dnd>
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="rich:panelBar" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelBarTemplate">
+
+ <vpe:tag name="rich:messages" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesMessagesTemplate">
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
</vpe:resize>
<vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="no"/>
- </vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="yes" />
+ </vpe:dnd>
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:panelBarItem" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelItemTemplate">
- <vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="yes"/>
- </vpe:dnd>
+ <vpe:tag name="rich:nodeSelectListener" case-sensitive="yes">
+ <vpe:template children="no" modify="yes">
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:tab" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesTabTemplate">
- <vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="yes"/>
- </vpe:dnd>
+ <vpe:tag name="rich:orderingList" case-sensitive="yes">
+ <vpe:template children="yes" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesOrderingList">
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="yes">
+ <vpe:container-child tag-name="column" />
+ </vpe:drop>
+ </vpe:dnd>
+ <vpe:textFormatting use-default-formats="yes">
+ <vpe:format type="BlockFormat" addChildren="deny" />
+ </vpe:textFormatting>
+ <vpe:pseudoContent defaultText="yes" />
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:menuItem" case-sensitive="yes" >
- <vpe:template class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesMenuItemTemplate"
- children="yes" modify="no">
- <vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="no"/>
- </vpe:dnd>
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="rich:menuGroup" case-sensitive="yes" >
- <vpe:template class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesMenuGroupTemplate"
- children="yes" modify="no">
- <vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="no"/>
- </vpe:dnd>
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="rich:menuSeparator" case-sensitive="yes" >
- <vpe:template children="no" modify="no" >
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="rich:contextMenu" case-sensitive="yes" >
- <vpe:template children="no" modify="no" >
+ <!-- Since RichFaces 3.3.1 -->
+ <vpe:tag name="rich:page" case-sensitive="yes">
+ <vpe:template children="yes" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPageTemplate">
</vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:calendar" case-sensitive="yes">
- <vpe:template children="yes" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesCalendarTemplate">
+
+ <vpe:tag name="rich:paint2D" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPaint2DTemplate">
+ <vpe:resize>
+ <vpe:width width-attr="style.width" />
+ <vpe:height height-attr="style.height" />
+ </vpe:resize>
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="no" />
+ <vpe:drop container="no"></vpe:drop>
</vpe:dnd>
+ <vpe:pseudoContent defaultText="no" />
</vpe:template>
</vpe:tag>
-
-
- <vpe:tag name="rich:virtualEarth" case-sensitive="yes">
- <vpe:template children="no" modify="yes"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesVirtualEarthTemplate">
-
- <vpe:resize>
- <vpe:width width-attr="style.width" />
+
+ <vpe:tag name="rich:panel" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelTemplate">
+ <vpe:resize>
+ <vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
</vpe:resize>
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="no"></vpe:drop>
+ <vpe:drop container="yes" />
</vpe:dnd>
</vpe:template>
- </vpe:tag>
-
- <vpe:tag name="rich:message" case-sensitive="yes">
- <vpe:template children="yes" modify="yes"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesMessageTemplate">
-
- <vpe:resize>
- <vpe:width width-attr="style.width" />
+ </vpe:tag>
+
+
+ <vpe:tag name="rich:panelBar" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelBarTemplate">
+ <vpe:resize>
+ <vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
</vpe:resize>
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="yes"/>
+ <vpe:drop container="no" />
</vpe:dnd>
</vpe:template>
- </vpe:tag>
-
- <vpe:tag name="rich:messages" case-sensitive="yes">
- <vpe:template children="yes" modify="yes"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesMessagesTemplate">
-
- <vpe:resize>
- <vpe:width width-attr="style.width" />
+ </vpe:tag>
+
+ <vpe:tag name="rich:panelBarItem" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelItemTemplate">
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="yes" />
+ </vpe:dnd>
+ </vpe:template>
+ </vpe:tag>
+
+
+ <vpe:tag name="rich:panelMenu" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelMenuTemplate">
+ <vpe:resize>
+ <vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
</vpe:resize>
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="yes"/>
+ <vpe:drop container="yes" />
</vpe:dnd>
</vpe:template>
- </vpe:tag>
-
- <vpe:tag name="rich:effect" case-sensitive="yes">
- <vpe:template children="no" modify="yes" >
- </vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:jQuery" case-sensitive="yes">
- <vpe:template children="no" modify="yes" >
+
+ <vpe:tag name="rich:panelMenuGroup" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelMenuGroupTemplate">
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="yes" />
+ </vpe:dnd>
+ <vpe:textFormatting use-default-formats="yes">
+ </vpe:textFormatting>
</vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:componentControl" case-sensitive="yes">
- <vpe:template children="no" modify="yes" >
+
+ <vpe:tag name="rich:panelMenuItem" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelMenuItemTemplate">
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="yes" />
+ </vpe:dnd>
+ <vpe:textFormatting use-default-formats="yes">
+ </vpe:textFormatting>
</vpe:template>
</vpe:tag>
-
-
- <vpe:tag name="rich:insert" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesInsertTemplate">
+
+ <vpe:tag name="rich:pickList" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPickListTemplate">
+ <vpe:copy attrs="style" />
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="yes"/>
- </vpe:dnd>
+ <vpe:drop container="yes">
+ <vpe:container-child tag-name="selectItem" />
+ <vpe:container-child tag-name="selectItems" />
+ </vpe:drop>
+ </vpe:dnd>
+ <vpe:textFormatting use-default-formats="yes">
+ </vpe:textFormatting>
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:itemChangeListener" case-sensitive="yes">
- <vpe:template children="no" modify="yes" >
+ <vpe:tag name="rich:popupPanel" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:changeExpandListener" case-sensitive="yes">
- <vpe:template children="no" modify="yes" >
+ <vpe:tag name="rich:progressBar" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesProgressBarTemplate">
+ <vpe:resize>
+ <vpe:width width-attr="style.width" />
+ <vpe:height height-attr="style.height" />
+ </vpe:resize>
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="yes">
+ <vpe:container-child tag-name="outputText" />
+ <vpe:container-child tag-name="facet" />
+ </vpe:drop>
+ </vpe:dnd>
</vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:nodeSelectListener" case-sensitive="yes">
- <vpe:template children="no" modify="yes" >
+
+ <vpe:tag name="rich:recursiveTreeNodesAdaptor" case-sensitive="yes">
+ <vpe:template children="yes" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesRecursiveTreeNodesAdaptorTemplate">
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="yes">
+ <vpe:container-child tag-name="treeNode" />
+ </vpe:drop>
+ </vpe:dnd>
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:panelMenuItem" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelMenuItemTemplate">
- <vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="yes"/>
- </vpe:dnd>
+ <vpe:tag name="rich:scrollableDataTable" case-sensitive="yes">
+ <vpe:template children="yes" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesScrollableDataTableTemplate">
+ <vpe:resize>
+ <vpe:width width-attr="width" />
+ <vpe:height height-attr="height" />
+ </vpe:resize>
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="yes">
+ <vpe:container-child tag-name="column" />
+ </vpe:drop>
+ </vpe:dnd>
<vpe:textFormatting use-default-formats="yes">
+ <vpe:format type="BlockFormat" addChildren="deny" />
</vpe:textFormatting>
+ <vpe:pseudoContent defaultText="yes" />
</vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:panelMenuGroup" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelMenuGroupTemplate">
- <vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="yes"/>
- </vpe:dnd>
- <vpe:textFormatting use-default-formats="yes">
- </vpe:textFormatting>
+
+ <vpe:tag name="rich:select" case-sensitive="yes">
+ <vpe:template children="yes" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesSelectTemplate">
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="no" />
+ </vpe:dnd>
</vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:panelMenu" case-sensitive="yes">
- <vpe:template children="yes" modify="yes" class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPanelMenuTemplate">
+
+ <vpe:tag name="rich:separator" case-sensitive="yes">
+ <vpe:template children="no" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesSeparatorTemplate">
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
</vpe:resize>
<vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="yes"/>
- </vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="no" />
+ </vpe:dnd>
</vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:listShuttle" case-sensitive="yes">
+
+ <vpe:tag name="rich:simpleTogglePanel" case-sensitive="yes">
<vpe:template children="yes" modify="yes"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesListShuttleTemplate">
- <vpe:copy attrs="style" />
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesSimpleTogglePanelTemplate">
+ <vpe:resize>
+ <vpe:width width-attr="style.width" />
+ <vpe:height height-attr="style.height" />
+ </vpe:resize>
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="yes">
- <vpe:container-child tag-name="column" />
- </vpe:drop>
+ <vpe:drop container="yes" />
</vpe:dnd>
- <vpe:textFormatting use-default-formats="yes">
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="rich:spacer" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesSpacerTemplate">
+ <vpe:resize>
+ <vpe:width width-attr="style.width" />
+ <vpe:height height-attr="style.height" />
+ </vpe:resize>
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="no" />
+ </vpe:dnd>
+ <vpe:textFormatting>
+ <vpe:format type="BackgroundColorFormat">
+ <vpe:formatAttribute type="style" />
+ </vpe:format>
</vpe:textFormatting>
+ <vpe:pseudoContent defaultText="no" />
</vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:ajaxValidator" case-sensitive="yes">
- <vpe:template children="no" modify="no"/>
+
+ <vpe:tag name="rich:subTable" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesSubTableTemplate">
+ </vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:beanValidator" case-sensitive="yes">
- <vpe:template children="no" modify="no"/>
+
+ <vpe:tag name="rich:subTableToggleControl" case-sensitive="yes">
+ <vpe:template children="no" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesSubTableToggleControlTemplate">
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="no" />
+ </vpe:dnd>
+ </vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:graphValidator" case-sensitive="yes">
- <vpe:template children="yes" modify="no"/>
+
+ <vpe:tag name="rich:suggestionbox" case-sensitive="yes">
+ <vpe:template children="no" modify="no" />
</vpe:tag>
-
- <vpe:tag name="rich:clientValidator" case-sensitive="yes">
- <vpe:template children="no" modify="no"/>
+
+ <vpe:tag name="rich:tab" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesTabTemplate">
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="yes" />
+ </vpe:dnd>
+ </vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:hotKey" case-sensitive="yes">
- <vpe:template children="yes" modify="no"/>
+
+ <vpe:tag name="rich:tabPanel" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesTabPanelTemplate">
+ <vpe:resize>
+ <vpe:width width-attr="style.width" />
+ <vpe:height height-attr="style.height" />
+ </vpe:resize>
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="no" />
+ </vpe:dnd>
+ </vpe:template>
</vpe:tag>
- <!-- Since RichFaces 3.3.0 -->
- <vpe:tag name="rich:editor" case-sensitive="yes">
- <vpe:if test="tld_version('min=3.3')">
- <vpe:template children="no" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesEditorTemplate">
- <vpe:resize>
- <vpe:width width-attr="width" />
- <vpe:height height-attr="height" />
- </vpe:resize>
- <vpe:dnd>
- <vpe:drag start-enable="yes" />
- <vpe:drop container="no"/>
- </vpe:dnd>
- </vpe:template>
- </vpe:if>
- </vpe:tag>
-
- <!-- Since RichFaces 3.3.1 -->
- <vpe:tag name="rich:page" case-sensitive="yes">
- <vpe:template children="yes" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesPageTemplate">
+ <vpe:tag name="rich:toggleControl" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesToggleControlTemplate">
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="yes" />
+ </vpe:dnd>
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:layout" case-sensitive="yes">
- <vpe:template children="yes" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesLayoutTemplate">
+ <vpe:tag name="rich:togglePanel" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesTogglePanelTemplate">
+ <vpe:resize>
+ <vpe:width width-attr="style.width" />
+ <vpe:height height-attr="style.height" />
+ </vpe:resize>
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="yes" />
+ </vpe:dnd>
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:layoutPanel" case-sensitive="yes">
- <vpe:template children="yes" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesLayoutPanelTemplate">
+ <vpe:tag name="rich:togglePanelItem" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesTogglePanelItemTemplate">
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="yes" />
+ </vpe:dnd>
</vpe:template>
</vpe:tag>
-
- <vpe:tag name="rich:colorPicker" case-sensitive="yes">
- <vpe:template children="yes" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesColorPickerTemplate">
+
+ <vpe:tag name="rich:toolBar" case-sensitive="yes">
+ <vpe:template
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesToolBarTemplate"
+ children="yes" modify="no">
+ <vpe:resize>
+ <vpe:width width-attr="style.width" />
+ <vpe:height height-attr="style.height" />
+ </vpe:resize>
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="no" />
+ </vpe:dnd>
</vpe:template>
</vpe:tag>
-
- <!-- Since RichFaces 4.0 -->
- <vpe:tag name="rich:autocomplete" case-sensitive="yes">
- <vpe:template children="yes" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesAutocompleteTemplate">
+
+ <vpe:tag name="rich:toolbar" case-sensitive="yes">
+ <vpe:template
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesToolBarTemplate"
+ children="yes" modify="no">
+ <vpe:resize>
+ <vpe:width width-attr="style.width" />
+ <vpe:height height-attr="style.height" />
+ </vpe:resize>
<vpe:dnd>
<vpe:drag start-enable="yes" />
<vpe:drop container="no" />
</vpe:dnd>
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:select" case-sensitive="yes">
- <vpe:template children="yes" modify="no"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesSelectTemplate">
+
+ <vpe:tag name="rich:toolBarGroup" case-sensitive="yes">
+ <vpe:template
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesToolBarGroupTemplate"
+ children="yes" modify="no">
<vpe:dnd>
<vpe:drag start-enable="yes" />
<vpe:drop container="no" />
</vpe:dnd>
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:dataScroller" case-sensitive="yes">
- <vpe:template children="yes" modify="yes"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesDataTableScrollerTemplate">
+
+ <vpe:tag name="rich:toolbarGroup" case-sensitive="yes">
+ <vpe:template
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesToolBarGroupTemplate"
+ children="yes" modify="no">
+ <vpe:dnd>
+ <vpe:drag start-enable="yes" />
+ <vpe:drop container="no" />
+ </vpe:dnd>
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="rich:toolBarSeparator" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="rich:toolTip" case-sensitive="yes">
+ <vpe:template children="no" modify="yes">
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="rich:tooltip" case-sensitive="yes">
+ <vpe:template children="no" modify="yes">
+ </vpe:template>
+ </vpe:tag>
+
+
+ <vpe:tag name="rich:tree" case-sensitive="yes">
+ <vpe:template children="yes" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesTreeTemplate">
<vpe:resize>
<vpe:width width-attr="style.width" />
<vpe:height height-attr="style.height" />
@@ -914,57 +952,48 @@
<vpe:dnd>
<vpe:drag start-enable="yes" />
<vpe:drop container="yes">
- <vpe:container-child tag-name="f:facet" />
+ <vpe:container-child tag-name="treeNode" />
+ <vpe:container-child tag-name="treeNodesAdaptor" />
+ <vpe:container-child tag-name="recursiveTreeNodesAdaptor" />
</vpe:drop>
</vpe:dnd>
+ <vpe:textFormatting use-default-formats="yes">
+ <vpe:format type="BlockFormat" addChildren="deny" />
+ </vpe:textFormatting>
+ <vpe:pseudoContent defaultText="yes" />
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:subTableToggleControl" case-sensitive="yes">
- <vpe:template children="no" modify="yes"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesSubTableToggleControlTemplate">
+
+ <vpe:tag name="rich:treeNode" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesTreeNodeTemplate">
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="rich:treeNodesAdaptor" case-sensitive="yes">
+ <vpe:template children="yes" modify="no"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesTreeNodesAdaptorTemplate">
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="no"/>
+ <vpe:drop container="yes">
+ <vpe:container-child tag-name="treeNode" />
+ </vpe:drop>
</vpe:dnd>
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:list" case-sensitive="yes">
- <vpe:template children="yes" modify="yes"
- class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesListTemplate">
+
+ <vpe:tag name="rich:virtualEarth" case-sensitive="yes">
+ <vpe:template children="no" modify="yes"
+ class="org.jboss.tools.jsf.vpe.richfaces.template.RichFacesVirtualEarthTemplate">
+ <vpe:resize>
+ <vpe:width width-attr="style.width" />
+ <vpe:height height-attr="style.height" />
+ </vpe:resize>
<vpe:dnd>
<vpe:drag start-enable="yes" />
- <vpe:drop container="yes"/>
+ <vpe:drop container="no"></vpe:drop>
</vpe:dnd>
</vpe:template>
</vpe:tag>
- <vpe:tag name="rich:clientId" case-sensitive="yes">
- <vpe:template children="no" modify="no">
- </vpe:template>
- </vpe:tag>
- <vpe:tag name="rich:component" case-sensitive="yes">
- <vpe:template children="no" modify="no">
- </vpe:template>
- </vpe:tag>
- <vpe:tag name="rich:element" case-sensitive="yes">
- <vpe:template children="no" modify="no">
- </vpe:template>
- </vpe:tag>
- <vpe:tag name="rich:findComponent" case-sensitive="yes">
- <vpe:template children="no" modify="no">
- </vpe:template>
- </vpe:tag>
- <vpe:tag name="rich:isUserInRole" case-sensitive="yes">
- <vpe:template children="no" modify="no">
- </vpe:template>
- </vpe:tag>
- <vpe:tag name="rich:popupPanel" case-sensitive="yes" >
- <vpe:template children="no" modify="no" >
- </vpe:template>
- </vpe:tag>
-
- <!-- RF4 templates w/corected names -->
-
-
-
</vpe:templates>
\ No newline at end of file
14 years, 11 months
JBoss Tools SVN: r31317 - in trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test: projects/CDIConfigValidationTest and 10 other directories.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2011-05-13 20:49:49 -0400 (Fri, 13 May 2011)
New Revision: 31317
Added:
trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/
trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/.classpath
trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/.project
trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/.settings/
trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/.settings/org.eclipse.jdt.core.prefs
trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/lib/
trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/lib/cdi-api.jar
trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/lib/javax.inject.jar
trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/lib/jboss-interceptor-api.jar
trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/lib/seam-config-xml.jar
trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/src/
trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/src/META-INF/
trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/src/META-INF/beans.xml
trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/src/org/
trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/src/org/jboss/
trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/src/org/jboss/beans/
trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/src/org/jboss/beans/validation/
trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/src/org/jboss/beans/validation/test/
trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/src/org/jboss/beans/validation/test/MyBean1.java
trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/src/org/jboss/tools/cdi/seam/config/core/test/SeamConfigValidationTest.java
trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/src/org/jboss/tools/cdi/seam/config/core/test/SeamConfigValidationTestSetup.java
Modified:
trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/src/org/jboss/tools/cdi/seam/config/core/test/CDISeamConfigCoreAllTests.java
Log:
JBIDE-8941
https://issues.jboss.org/browse/JBIDE-8941
Added: trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/.classpath
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/.classpath (rev 0)
+++ trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/.classpath 2011-05-14 00:49:49 UTC (rev 31317)
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+ <classpathentry kind="src" path="src"/>
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
+ <classpathentry kind="lib" path="lib/cdi-api.jar"/>
+ <classpathentry kind="lib" path="lib/javax.inject.jar"/>
+ <classpathentry kind="lib" path="lib/seam-config-xml.jar"/>
+ <classpathentry kind="lib" path="lib/jboss-interceptor-api.jar"/>
+ <classpathentry kind="output" path="bin"/>
+</classpath>
Property changes on: trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/.classpath
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/.project
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/.project (rev 0)
+++ trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/.project 2011-05-14 00:49:49 UTC (rev 31317)
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>CDIConfigValidationTest</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.wst.validation.validationbuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.eclipse.jdt.core.javabuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.jboss.tools.jst.web.kb.kbbuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.jboss.tools.cdi.core.cdibuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.jdt.core.javanature</nature>
+ <nature>org.jboss.tools.jst.web.kb.kbnature</nature>
+ <nature>org.jboss.tools.cdi.core.cdinature</nature>
+ </natures>
+</projectDescription>
Property changes on: trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/.project
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/.settings/org.eclipse.jdt.core.prefs
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/.settings/org.eclipse.jdt.core.prefs (rev 0)
+++ trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/.settings/org.eclipse.jdt.core.prefs 2011-05-14 00:49:49 UTC (rev 31317)
@@ -0,0 +1,12 @@
+#Fri May 13 12:44:03 PDT 2011
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
+org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
+org.eclipse.jdt.core.compiler.compliance=1.6
+org.eclipse.jdt.core.compiler.debug.lineNumber=generate
+org.eclipse.jdt.core.compiler.debug.localVariable=generate
+org.eclipse.jdt.core.compiler.debug.sourceFile=generate
+org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
+org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
+org.eclipse.jdt.core.compiler.source=1.6
Property changes on: trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/.settings/org.eclipse.jdt.core.prefs
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/lib/cdi-api.jar
===================================================================
(Binary files differ)
Property changes on: trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/lib/cdi-api.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/lib/javax.inject.jar
===================================================================
(Binary files differ)
Property changes on: trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/lib/javax.inject.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/lib/jboss-interceptor-api.jar
===================================================================
(Binary files differ)
Property changes on: trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/lib/jboss-interceptor-api.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/lib/seam-config-xml.jar
===================================================================
(Binary files differ)
Property changes on: trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/lib/seam-config-xml.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/src/META-INF/beans.xml
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/src/META-INF/beans.xml (rev 0)
+++ trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/src/META-INF/beans.xml 2011-05-14 00:49:49 UTC (rev 31317)
@@ -0,0 +1,54 @@
+<?xml version="1.0"?>
+<beans xmlns="http://java.sun.com/xml/ns/javaee"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:s="urn:java:ee"
+ xmlns:v="urn:java:org.jboss.beans.validation.test"
+ xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://jboss.org/schema/cdi/beans_1_0.xsd">
+
+<v:MyBean2>
+</v:MyBean2>
+
+<v:MyBean1>
+ <s:Default/>
+ <v:field1>
+ </v:field1>
+ <v:field3></v:field3>
+</v:MyBean1>
+
+<v:MyBean1>
+ <s:Default/>
+ <v:field1>
+ <s:Named param="abc"/>
+ </v:field1>
+</v:MyBean1>
+
+<v:MyBean1>
+ <s:Default/>
+ <v:field1>
+ <s:Named value="abc"/>
+ </v:field1>
+</v:MyBean1>
+
+<v:MyBean1>
+ <s:Default/>
+ <v:method1>
+ <s:parameters>
+ </s:parameters>
+ </v:method1>
+ <v:method2>
+ <s:parameters>
+ </s:parameters>
+ </v:method2>
+ <v:method1>
+ <s:parameters>
+ <s:String/>
+ </s:parameters>
+ </v:method1>
+ <v:method1>
+ <s:parameters>
+ <s:Boolean/>
+ </s:parameters>
+ </v:method1>
+</v:MyBean1>
+
+</beans>
Property changes on: trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/src/META-INF/beans.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/src/org/jboss/beans/validation/test/MyBean1.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/src/org/jboss/beans/validation/test/MyBean1.java (rev 0)
+++ trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/src/org/jboss/beans/validation/test/MyBean1.java 2011-05-14 00:49:49 UTC (rev 31317)
@@ -0,0 +1,10 @@
+package org.jboss.beans.validation.test;
+
+public class MyBean1 {
+ boolean field1;
+
+ void method1() {}
+
+ void method1(String s) {}
+
+}
Property changes on: trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigValidationTest/src/org/jboss/beans/validation/test/MyBean1.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Modified: trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/src/org/jboss/tools/cdi/seam/config/core/test/CDISeamConfigCoreAllTests.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/src/org/jboss/tools/cdi/seam/config/core/test/CDISeamConfigCoreAllTests.java 2011-05-14 00:47:49 UTC (rev 31316)
+++ trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/src/org/jboss/tools/cdi/seam/config/core/test/CDISeamConfigCoreAllTests.java 2011-05-14 00:49:49 UTC (rev 31317)
@@ -22,15 +22,19 @@
public static Test suite() {
// it could be done here because it is not needed to be enabled back
JavaModelManager.getIndexManager().disable();
-
+
TestSuite suiteAll = new TestSuite("CDI Config Core Tests");
- suiteAll.addTestSuite(ExtensionTest.class);
- suiteAll.addTestSuite(SeamDefinitionsTest.class);
- suiteAll.addTestSuite(SeamBeansTest.class);
+ TestSuite suiteCore = new TestSuite("CDI Config Model Tests");
+ suiteCore.addTestSuite(ExtensionTest.class);
+ suiteCore.addTestSuite(SeamDefinitionsTest.class);
+ suiteCore.addTestSuite(SeamBeansTest.class);
+ suiteAll.addTest(new SeamConfigTestSetup(suiteCore));
- SeamConfigTestSetup suite = new SeamConfigTestSetup(suiteAll);
+ TestSuite suiteValidation = new TestSuite("CDI Config Validation Tests");
+ suiteValidation.addTestSuite(SeamConfigValidationTest.class);
+ suiteAll.addTest(new SeamConfigValidationTestSetup(suiteValidation));
- return suite;
+ return suiteAll;
}
}
Added: trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/src/org/jboss/tools/cdi/seam/config/core/test/SeamConfigValidationTest.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/src/org/jboss/tools/cdi/seam/config/core/test/SeamConfigValidationTest.java (rev 0)
+++ trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/src/org/jboss/tools/cdi/seam/config/core/test/SeamConfigValidationTest.java 2011-05-14 00:49:49 UTC (rev 31317)
@@ -0,0 +1,121 @@
+/*******************************************************************************
+ * Copyright (c) 2011 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.cdi.seam.config.core.test;
+
+import java.text.MessageFormat;
+
+import junit.framework.TestCase;
+
+import org.eclipse.core.resources.IFile;
+import org.eclipse.core.resources.IProject;
+import org.eclipse.core.resources.IResource;
+import org.eclipse.core.resources.ResourcesPlugin;
+import org.eclipse.core.runtime.CoreException;
+import org.jboss.tools.cdi.core.CDICorePlugin;
+import org.jboss.tools.cdi.core.ICDIProject;
+import org.jboss.tools.cdi.seam.config.core.validation.SeamConfigValidationMessages;
+import org.jboss.tools.test.util.ResourcesUtils;
+import org.jboss.tools.tests.AbstractResourceMarkerTest;
+
+/**
+ *
+ * @author Viacheslav Kabanovich
+ *
+ */
+public class SeamConfigValidationTest extends TestCase {
+ protected static String PLUGIN_ID = "org.jboss.tools.cdi.seam.config.core.test";
+ protected static String PROJECT_NAME = "CDIConfigValidationTest";
+ protected static String PROJECT_PATH = "/projects/CDIConfigValidationTest";
+
+ protected IProject project;
+ protected ICDIProject cdiProject;
+ IFile f;
+
+ public SeamConfigValidationTest() {
+ project = getTestProject();
+ cdiProject = CDICorePlugin.getCDIProject(project, false);
+ f = project.getFile("src/META-INF/beans.xml");
+ assertTrue(f.exists());
+ }
+
+ public IProject getTestProject() {
+ if(project==null) {
+ try {
+ project = findTestProject();
+ if(project==null || !project.exists()) {
+ project = ResourcesUtils.importProject(PLUGIN_ID, PROJECT_PATH);
+ }
+ } catch (Exception e) {
+ e.printStackTrace();
+ fail("Can't import CDI test project: " + e.getMessage());
+ }
+ }
+ return project;
+ }
+
+ public static IProject findTestProject() {
+ return ResourcesPlugin.getWorkspace().getRoot().getProject(PROJECT_NAME);
+ }
+
+ public void testBeanResolution() throws CoreException {
+ assertMarkerIsCreated(f, MessageFormat.format(SeamConfigValidationMessages.UNRESOLVED_TYPE, "v:MyBean2"), 8);
+ assertMarkerIsNotCreated(f, MessageFormat.format(SeamConfigValidationMessages.UNRESOLVED_TYPE, "v:MyBean1"));
+ }
+
+ public void testFieldResolution() throws CoreException {
+ assertMarkerIsCreated(f, MessageFormat.format(SeamConfigValidationMessages.UNRESOLVED_MEMBER, "param"), 21);
+ assertMarkerIsNotCreated(f, MessageFormat.format(SeamConfigValidationMessages.UNRESOLVED_MEMBER, "value"), 28);
+ }
+
+ public void testMethodResolution() throws CoreException {
+ //It is unresolved member because no member with that name is found.
+ assertMarkerIsCreated(f, MessageFormat.format(SeamConfigValidationMessages.UNRESOLVED_MEMBER, "v:method2"), 38);
+
+ assertMarkerIsNotCreated(f, MessageFormat.format(SeamConfigValidationMessages.UNRESOLVED_MEMBER, "v:method1"), 34);
+ assertMarkerIsNotCreated(f, MessageFormat.format(SeamConfigValidationMessages.UNRESOLVED_METHOD, "v:method1"), 34);
+
+ assertMarkerIsNotCreated(f, MessageFormat.format(SeamConfigValidationMessages.UNRESOLVED_MEMBER, "v:method1"), 42);
+ assertMarkerIsNotCreated(f, MessageFormat.format(SeamConfigValidationMessages.UNRESOLVED_METHOD, "v:method1"), 42);
+
+ assertMarkerIsCreated(f, MessageFormat.format(SeamConfigValidationMessages.UNRESOLVED_METHOD, "v:method1"), 47);
+ }
+
+ public void testAnnotationMemberResolution() throws CoreException {
+ assertMarkerIsCreated(f, MessageFormat.format(SeamConfigValidationMessages.UNRESOLVED_MEMBER, "v:field3"), 15);
+ assertMarkerIsNotCreated(f, MessageFormat.format(SeamConfigValidationMessages.UNRESOLVED_MEMBER, "v:field1"));
+ }
+
+ protected static void assertMarkerIsCreated(IResource resource, String pattern, int... expectedLines) throws CoreException {
+ assertMarkerIsCreated(resource, pattern, true, expectedLines);
+ }
+
+ protected static void assertMarkerIsCreated(IResource resource, String message, boolean pattern, int... expectedLines) throws CoreException {
+ AbstractResourceMarkerTest.assertMarkerIsCreated(resource, AbstractResourceMarkerTest.MARKER_TYPE, pattern?convertMessageToPatern(message):message, pattern, expectedLines);
+ }
+
+ protected static void assertMarkerIsNotCreated(IResource resource, String message) throws CoreException {
+ AbstractResourceMarkerTest.assertMarkerIsNotCreated(resource, AbstractResourceMarkerTest.MARKER_TYPE, convertMessageToPatern(message));
+ }
+
+ protected static void assertMarkerIsNotCreated(IResource resource, String message, int expectedLine) throws CoreException {
+ AbstractResourceMarkerTest.assertMarkerIsNotCreated(resource, AbstractResourceMarkerTest.MARKER_TYPE, convertMessageToPatern(message), expectedLine);
+ }
+
+ protected static void assertMarkerIsCreatedForGivenPosition(IResource resource, String message, int lineNumber, int startPosition, int endPosition) throws CoreException {
+ AbstractResourceMarkerTest.assertMarkerIsCreatedForGivenPosition(resource, AbstractResourceMarkerTest.MARKER_TYPE, convertMessageToPatern(message), lineNumber, startPosition, endPosition);
+ }
+
+ protected static String convertMessageToPatern(String message) {
+ return message.replace("[", "\\[").replace("]", "\\]").replace("<", "\\<").replace(">", "\\>").replace("(", "\\(").replace(")", "\\)")
+ .replace("{", "\\{").replace("}", "\\}").replace("'", "\\'");
+ }
+
+}
Property changes on: trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/src/org/jboss/tools/cdi/seam/config/core/test/SeamConfigValidationTest.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/src/org/jboss/tools/cdi/seam/config/core/test/SeamConfigValidationTestSetup.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/src/org/jboss/tools/cdi/seam/config/core/test/SeamConfigValidationTestSetup.java (rev 0)
+++ trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/src/org/jboss/tools/cdi/seam/config/core/test/SeamConfigValidationTestSetup.java 2011-05-14 00:49:49 UTC (rev 31317)
@@ -0,0 +1,48 @@
+/*******************************************************************************
+ * Copyright (c) 2011 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.cdi.seam.config.core.test;
+
+import junit.extensions.TestSetup;
+import junit.framework.Test;
+
+import org.eclipse.core.resources.IProject;
+import org.eclipse.core.resources.ResourcesPlugin;
+import org.jboss.tools.test.util.JobUtils;
+import org.jboss.tools.test.util.ResourcesUtils;
+
+/**
+ * @author Viacheslav Kabanovich
+ */
+public class SeamConfigValidationTestSetup extends TestSetup {
+
+ protected IProject project;
+
+ public SeamConfigValidationTestSetup(Test test) {
+ super(test);
+ }
+
+ @Override
+ protected void setUp() throws Exception {
+ project = ResourcesPlugin.getWorkspace().getRoot().getProject(SeamConfigValidationTest.PROJECT_NAME);
+ if(project == null || !project.exists()) {
+ project = ResourcesUtils.importProject(SeamConfigValidationTest.PLUGIN_ID, SeamConfigValidationTest.PROJECT_PATH);
+ }
+ }
+
+ @Override
+ protected void tearDown() throws Exception {
+ boolean saveAutoBuild = ResourcesUtils.setBuildAutomatically(false);
+ JobUtils.waitForIdle();
+ project.delete(true, true, null);
+ JobUtils.waitForIdle();
+ ResourcesUtils.setBuildAutomatically(saveAutoBuild);
+ }
+}
\ No newline at end of file
Property changes on: trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/src/org/jboss/tools/cdi/seam/config/core/test/SeamConfigValidationTestSetup.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
14 years, 11 months
JBoss Tools SVN: r31316 - in trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core: src/org/jboss/tools/cdi/seam/config/core/scanner and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2011-05-13 20:47:49 -0400 (Fri, 13 May 2011)
New Revision: 31316
Modified:
trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/META-INF/MANIFEST.MF
trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/src/org/jboss/tools/cdi/seam/config/core/scanner/SeamDefinitionBuilder.java
Log:
JBIDE-8941
https://issues.jboss.org/browse/JBIDE-8941
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/META-INF/MANIFEST.MF
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/META-INF/MANIFEST.MF 2011-05-14 00:28:07 UTC (rev 31315)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/META-INF/MANIFEST.MF 2011-05-14 00:47:49 UTC (rev 31316)
@@ -32,5 +32,6 @@
org.jboss.tools.cdi.seam.config.core.definition,
org.jboss.tools.cdi.seam.config.core.scanner,
org.jboss.tools.cdi.seam.config.core.xml,
- org.jboss.tools.cdi.seam.config.core.util
+ org.jboss.tools.cdi.seam.config.core.util,
+ org.jboss.tools.cdi.seam.config.core.validation
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/src/org/jboss/tools/cdi/seam/config/core/scanner/SeamDefinitionBuilder.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/src/org/jboss/tools/cdi/seam/config/core/scanner/SeamDefinitionBuilder.java 2011-05-14 00:28:07 UTC (rev 31315)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/src/org/jboss/tools/cdi/seam/config/core/scanner/SeamDefinitionBuilder.java 2011-05-14 00:47:49 UTC (rev 31316)
@@ -487,10 +487,7 @@
IJavaAnnotation createInject(SAXElement forElement) {
IType type = project.getType(CDIConstants.INJECT_ANNOTATION_TYPE_NAME);
- if(type == null) {
- return null;
- }
- return new AnnotationLiteral(resource, forElement.getLocation().getStartPosition(), forElement.getLocation().getLength(), null, 0, type);
+ return (type == null) ? null : new AnnotationLiteral(resource, forElement.getLocation().getStartPosition(), forElement.getLocation().getLength(), null, 0, type);
}
private void addDependency(IType type) {
14 years, 11 months
JBoss Tools SVN: r31315 - in trunk: common and 7 other directories.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2011-05-13 20:28:07 -0400 (Fri, 13 May 2011)
New Revision: 31315
Removed:
trunk/bpel/releng/
trunk/common/releng/
trunk/freemarker/releng/
trunk/hibernatetools/releng/
trunk/jbpm/releng/
trunk/jmx/releng/
trunk/modeshape/releng/
trunk/profiler/releng/
trunk/vpe/releng/
Log:
removed legacy releng modules
14 years, 11 months
JBoss Tools SVN: r31314 - trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/src/org/jboss/tools/cdi/seam/config/core/definition.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2011-05-13 19:45:56 -0400 (Fri, 13 May 2011)
New Revision: 31314
Modified:
trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/src/org/jboss/tools/cdi/seam/config/core/definition/SeamBeansDefinition.java
Log:
JBIDE-8941
https://issues.jboss.org/browse/JBIDE-8941
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/src/org/jboss/tools/cdi/seam/config/core/definition/SeamBeansDefinition.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/src/org/jboss/tools/cdi/seam/config/core/definition/SeamBeansDefinition.java 2011-05-13 23:42:34 UTC (rev 31313)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/src/org/jboss/tools/cdi/seam/config/core/definition/SeamBeansDefinition.java 2011-05-13 23:45:56 UTC (rev 31314)
@@ -29,9 +29,7 @@
import org.jboss.tools.cdi.internal.core.impl.definition.ParameterDefinition;
import org.jboss.tools.cdi.internal.core.impl.definition.TypeDefinition;
import org.jboss.tools.cdi.seam.config.core.ConfigDefinitionContext;
-import org.jboss.tools.cdi.seam.config.core.xml.Location;
import org.jboss.tools.cdi.seam.config.core.xml.SAXNode;
-import org.jboss.tools.common.text.ITextSourceReference;
/**
*
@@ -144,7 +142,6 @@
List<FieldDefinition> fieldDefs = typeDef.getFields();
for (FieldDefinition fieldDef:fieldDefs) {
- if(fieldDef.getField() == null) continue;
String n = fieldDef.getField().getElementName();
SeamFieldDefinition f = def.getField(n);
if(f != null) {
14 years, 11 months
JBoss Tools SVN: r31313 - in trunk/bpel: features and 18 other directories.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2011-05-13 19:42:34 -0400 (Fri, 13 May 2011)
New Revision: 31313
Modified:
trunk/bpel/features/org.jboss.tools.bpel.feature/pom.xml
trunk/bpel/features/org.jboss.tools.bpel.tests.feature/pom.xml
trunk/bpel/features/pom.xml
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.model/pom.xml
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.ui/pom.xml
trunk/bpel/plugins/org.eclipse.bpel.common.model/pom.xml
trunk/bpel/plugins/org.eclipse.bpel.common.ui/pom.xml
trunk/bpel/plugins/org.eclipse.bpel.model/pom.xml
trunk/bpel/plugins/org.eclipse.bpel.ui/pom.xml
trunk/bpel/plugins/org.eclipse.bpel.validator/pom.xml
trunk/bpel/plugins/org.eclipse.bpel.wsil.model/pom.xml
trunk/bpel/plugins/org.eclipse.bpel.xpath10/pom.xml
trunk/bpel/plugins/org.jboss.tools.bpel.cheatsheet/pom.xml
trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/pom.xml
trunk/bpel/plugins/pom.xml
trunk/bpel/pom.xml
trunk/bpel/site/pom.xml
trunk/bpel/tests/org.jboss.tools.bpel.ui.bot.test/pom.xml
trunk/bpel/tests/org.jboss.tools.bpel.ui.test/pom.xml
trunk/bpel/tests/pom.xml
Log:
https://issues.jboss.org/browse/JBIDE-8518 fix pom.xml files in JBT and JBDS repo such that only component root poms reference parent pom (all others just look up to .. for parent)
bpel component fix
fixed maven repo structure
left only one reference to parent pom in <module>/pom.xml
fixed relativePath to ../build/parent/pom.xml
Modified: trunk/bpel/features/org.jboss.tools.bpel.feature/pom.xml
===================================================================
--- trunk/bpel/features/org.jboss.tools.bpel.feature/pom.xml 2011-05-13 23:26:18 UTC (rev 31312)
+++ trunk/bpel/features/org.jboss.tools.bpel.feature/pom.xml 2011-05-13 23:42:34 UTC (rev 31313)
@@ -2,12 +2,12 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>org.jboss.tools.parent.pom</artifactId>
- <version>0.0.2-SNAPSHOT</version>
+ <groupId>org.jboss.tools.bpel</groupId>
+ <artifactId>features</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
</parent>
- <groupId>org.jboss.tools.bpel</groupId>
+ <groupId>org.jboss.tools.bpel.features</groupId>
<artifactId>org.jboss.tools.bpel.feature</artifactId>
<version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
-</project>
\ No newline at end of file
+</project>
Modified: trunk/bpel/features/org.jboss.tools.bpel.tests.feature/pom.xml
===================================================================
--- trunk/bpel/features/org.jboss.tools.bpel.tests.feature/pom.xml 2011-05-13 23:26:18 UTC (rev 31312)
+++ trunk/bpel/features/org.jboss.tools.bpel.tests.feature/pom.xml 2011-05-13 23:42:34 UTC (rev 31313)
@@ -2,12 +2,12 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>org.jboss.tools.parent.pom</artifactId>
- <version>0.0.2-SNAPSHOT</version>
+ <groupId>org.jboss.tools.bpel</groupId>
+ <artifactId>features</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
</parent>
- <groupId>org.jboss.tools.bpel</groupId>
+ <groupId>org.jboss.tools.bpel.features</groupId>
<artifactId>org.jboss.tools.bpel.tests.feature</artifactId>
<version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
-</project>
\ No newline at end of file
+</project>
Modified: trunk/bpel/features/pom.xml
===================================================================
--- trunk/bpel/features/pom.xml 2011-05-13 23:26:18 UTC (rev 31312)
+++ trunk/bpel/features/pom.xml 2011-05-13 23:42:34 UTC (rev 31313)
@@ -1,10 +1,15 @@
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>bpel</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
<groupId>org.jboss.tools.bpel</groupId>
- <artifactId>org.jboss.tools.bpel.features</artifactId>
- <name>org.jboss.tools.bpel.features</name>
+ <artifactId>features</artifactId>
<version>0.0.1-SNAPSHOT</version>
+ <name>bpel.features</name>
<packaging>pom</packaging>
<modules>
<module>org.jboss.tools.bpel.feature</module>
Modified: trunk/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.model/pom.xml
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.model/pom.xml 2011-05-13 23:26:18 UTC (rev 31312)
+++ trunk/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.model/pom.xml 2011-05-13 23:42:34 UTC (rev 31313)
@@ -2,12 +2,12 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>org.jboss.tools.parent.pom</artifactId>
- <version>0.0.2-SNAPSHOT</version>
+ <groupId>org.jboss.tools.bpel</groupId>
+ <artifactId>plugins</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
</parent>
- <groupId>org.jboss.tools.bpel</groupId>
+ <groupId>org.jboss.tools.bpel.plugins</groupId>
<artifactId>org.eclipse.bpel.apache.ode.deploy.model</artifactId>
<version>0.6.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
-</project>
\ No newline at end of file
+</project>
Modified: trunk/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.ui/pom.xml
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.ui/pom.xml 2011-05-13 23:26:18 UTC (rev 31312)
+++ trunk/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.ui/pom.xml 2011-05-13 23:42:34 UTC (rev 31313)
@@ -2,12 +2,12 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>org.jboss.tools.parent.pom</artifactId>
- <version>0.0.2-SNAPSHOT</version>
+ <groupId>org.jboss.tools.bpel</groupId>
+ <artifactId>plugins</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
</parent>
- <groupId>org.jboss.tools.bpel</groupId>
+ <groupId>org.jboss.tools.bpel.plugins</groupId>
<artifactId>org.eclipse.bpel.apache.ode.deploy.ui</artifactId>
<version>0.7.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
-</project>
\ No newline at end of file
+</project>
Modified: trunk/bpel/plugins/org.eclipse.bpel.common.model/pom.xml
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.common.model/pom.xml 2011-05-13 23:26:18 UTC (rev 31312)
+++ trunk/bpel/plugins/org.eclipse.bpel.common.model/pom.xml 2011-05-13 23:42:34 UTC (rev 31313)
@@ -2,12 +2,12 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>org.jboss.tools.parent.pom</artifactId>
- <version>0.0.2-SNAPSHOT</version>
+ <groupId>org.jboss.tools.bpel</groupId>
+ <artifactId>plugins</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
</parent>
- <groupId>org.jboss.tools.bpel</groupId>
+ <groupId>org.jboss.tools.bpel.plugins</groupId>
<artifactId>org.eclipse.bpel.common.model</artifactId>
<version>0.6.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
-</project>
\ No newline at end of file
+</project>
Modified: trunk/bpel/plugins/org.eclipse.bpel.common.ui/pom.xml
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.common.ui/pom.xml 2011-05-13 23:26:18 UTC (rev 31312)
+++ trunk/bpel/plugins/org.eclipse.bpel.common.ui/pom.xml 2011-05-13 23:42:34 UTC (rev 31313)
@@ -2,12 +2,12 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>org.jboss.tools.parent.pom</artifactId>
- <version>0.0.2-SNAPSHOT</version>
+ <groupId>org.jboss.tools.bpel</groupId>
+ <artifactId>plugins</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
</parent>
- <groupId>org.jboss.tools.bpel</groupId>
+ <groupId>org.jboss.tools.bpel.plugins</groupId>
<artifactId>org.eclipse.bpel.common.ui</artifactId>
<version>0.6.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
-</project>
\ No newline at end of file
+</project>
Modified: trunk/bpel/plugins/org.eclipse.bpel.model/pom.xml
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.model/pom.xml 2011-05-13 23:26:18 UTC (rev 31312)
+++ trunk/bpel/plugins/org.eclipse.bpel.model/pom.xml 2011-05-13 23:42:34 UTC (rev 31313)
@@ -2,12 +2,12 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>org.jboss.tools.parent.pom</artifactId>
- <version>0.0.2-SNAPSHOT</version>
+ <groupId>org.jboss.tools.bpel</groupId>
+ <artifactId>plugins</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
</parent>
- <groupId>org.jboss.tools.bpel</groupId>
+ <groupId>org.jboss.tools.bpel.plugins</groupId>
<artifactId>org.eclipse.bpel.model</artifactId>
<version>0.7.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
-</project>
\ No newline at end of file
+</project>
Modified: trunk/bpel/plugins/org.eclipse.bpel.ui/pom.xml
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.ui/pom.xml 2011-05-13 23:26:18 UTC (rev 31312)
+++ trunk/bpel/plugins/org.eclipse.bpel.ui/pom.xml 2011-05-13 23:42:34 UTC (rev 31313)
@@ -2,12 +2,12 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>org.jboss.tools.parent.pom</artifactId>
- <version>0.0.2-SNAPSHOT</version>
+ <groupId>org.jboss.tools.bpel</groupId>
+ <artifactId>plugins</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
</parent>
- <groupId>org.jboss.tools.bpel</groupId>
+ <groupId>org.jboss.tools.bpel.plugins</groupId>
<artifactId>org.eclipse.bpel.ui</artifactId>
<version>0.7.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
-</project>
\ No newline at end of file
+</project>
Modified: trunk/bpel/plugins/org.eclipse.bpel.validator/pom.xml
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.validator/pom.xml 2011-05-13 23:26:18 UTC (rev 31312)
+++ trunk/bpel/plugins/org.eclipse.bpel.validator/pom.xml 2011-05-13 23:42:34 UTC (rev 31313)
@@ -2,12 +2,12 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>org.jboss.tools.parent.pom</artifactId>
- <version>0.0.2-SNAPSHOT</version>
+ <groupId>org.jboss.tools.bpel</groupId>
+ <artifactId>plugins</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
</parent>
- <groupId>org.jboss.tools.bpel</groupId>
+ <groupId>org.jboss.tools.bpel.plugins</groupId>
<artifactId>org.eclipse.bpel.validator</artifactId>
<version>0.7.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
-</project>
\ No newline at end of file
+</project>
Modified: trunk/bpel/plugins/org.eclipse.bpel.wsil.model/pom.xml
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.wsil.model/pom.xml 2011-05-13 23:26:18 UTC (rev 31312)
+++ trunk/bpel/plugins/org.eclipse.bpel.wsil.model/pom.xml 2011-05-13 23:42:34 UTC (rev 31313)
@@ -2,12 +2,12 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>org.jboss.tools.parent.pom</artifactId>
- <version>0.0.2-SNAPSHOT</version>
+ <groupId>org.jboss.tools.bpel</groupId>
+ <artifactId>plugins</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
</parent>
- <groupId>org.jboss.tools.bpel</groupId>
+ <groupId>org.jboss.tools.bpel.plugins</groupId>
<artifactId>org.eclipse.bpel.wsil.model</artifactId>
<version>0.6.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
-</project>
\ No newline at end of file
+</project>
Modified: trunk/bpel/plugins/org.eclipse.bpel.xpath10/pom.xml
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.xpath10/pom.xml 2011-05-13 23:26:18 UTC (rev 31312)
+++ trunk/bpel/plugins/org.eclipse.bpel.xpath10/pom.xml 2011-05-13 23:42:34 UTC (rev 31313)
@@ -2,12 +2,12 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>org.jboss.tools.parent.pom</artifactId>
- <version>0.0.2-SNAPSHOT</version>
+ <groupId>org.jboss.tools.bpel</groupId>
+ <artifactId>plugins</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
</parent>
- <groupId>org.jboss.tools.bpel</groupId>
+ <groupId>org.jboss.tools.bpel.plugins</groupId>
<artifactId>org.eclipse.bpel.xpath10</artifactId>
<version>0.6.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
-</project>
\ No newline at end of file
+</project>
Modified: trunk/bpel/plugins/org.jboss.tools.bpel.cheatsheet/pom.xml
===================================================================
--- trunk/bpel/plugins/org.jboss.tools.bpel.cheatsheet/pom.xml 2011-05-13 23:26:18 UTC (rev 31312)
+++ trunk/bpel/plugins/org.jboss.tools.bpel.cheatsheet/pom.xml 2011-05-13 23:42:34 UTC (rev 31313)
@@ -2,12 +2,12 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>org.jboss.tools.parent.pom</artifactId>
- <version>0.0.2-SNAPSHOT</version>
+ <groupId>org.jboss.tools.bpel</groupId>
+ <artifactId>plugins</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
</parent>
- <groupId>org.jboss.tools.bpel</groupId>
+ <groupId>org.jboss.tools.bpel.plugins</groupId>
<artifactId>org.jboss.tools.bpel.cheatsheet</artifactId>
<version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
-</project>
\ No newline at end of file
+</project>
Modified: trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/pom.xml
===================================================================
--- trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/pom.xml 2011-05-13 23:26:18 UTC (rev 31312)
+++ trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/pom.xml 2011-05-13 23:42:34 UTC (rev 31313)
@@ -2,12 +2,12 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>org.jboss.tools.parent.pom</artifactId>
- <version>0.0.2-SNAPSHOT</version>
+ <groupId>org.jboss.tools.bpel</groupId>
+ <artifactId>plugins</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
</parent>
- <groupId>org.jboss.tools.bpel</groupId>
+ <groupId>org.jboss.tools.bpel.plugins</groupId>
<artifactId>org.jboss.tools.bpel.runtimes</artifactId>
<version>0.5.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
-</project>
\ No newline at end of file
+</project>
Modified: trunk/bpel/plugins/pom.xml
===================================================================
--- trunk/bpel/plugins/pom.xml 2011-05-13 23:26:18 UTC (rev 31312)
+++ trunk/bpel/plugins/pom.xml 2011-05-13 23:42:34 UTC (rev 31313)
@@ -1,10 +1,15 @@
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>bpel</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
<groupId>org.jboss.tools.bpel</groupId>
- <artifactId>org.jboss.tools.bpel.plugins</artifactId>
- <name>org.jboss.tools.bpel.plugins</name>
+ <artifactId>plugins</artifactId>
<version>0.0.1-SNAPSHOT</version>
+ <name>bpel.plugins</name>
<packaging>pom</packaging>
<modules>
<module>org.eclipse.bpel.apache.ode.deploy.model</module>
Modified: trunk/bpel/pom.xml
===================================================================
--- trunk/bpel/pom.xml 2011-05-13 23:26:18 UTC (rev 31312)
+++ trunk/bpel/pom.xml 2011-05-13 23:42:34 UTC (rev 31313)
@@ -1,10 +1,16 @@
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.2-SNAPSHOT</version>
+ <relativePath>../build/parent/pom.xml</relativePath>
+ </parent>
<groupId>org.jboss.tools</groupId>
- <artifactId>org.jboss.tools.bpel.all</artifactId>
- <name>org.jboss.tools.bpel.all</name>
+ <artifactId>bpel</artifactId>
<version>0.0.1-SNAPSHOT</version>
+ <name>bpel.all</name>
<packaging>pom</packaging>
<modules>
<module>plugins</module>
Modified: trunk/bpel/site/pom.xml
===================================================================
--- trunk/bpel/site/pom.xml 2011-05-13 23:26:18 UTC (rev 31312)
+++ trunk/bpel/site/pom.xml 2011-05-13 23:42:34 UTC (rev 31313)
@@ -3,12 +3,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jboss.tools</groupId>
- <artifactId>org.jboss.tools.parent.pom</artifactId>
- <version>0.0.2-SNAPSHOT</version>
+ <artifactId>bpel</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.bpel</groupId>
- <artifactId>org.jboss.tools.bpel.site</artifactId>
- <name>org.jboss.tools.bpel.site</name>
+ <artifactId>bpel.site</artifactId>
<version>0.1.0-SNAPSHOT</version>
<packaging>eclipse-update-site</packaging>
-</project>
\ No newline at end of file
+</project>
Modified: trunk/bpel/tests/org.jboss.tools.bpel.ui.bot.test/pom.xml
===================================================================
--- trunk/bpel/tests/org.jboss.tools.bpel.ui.bot.test/pom.xml 2011-05-13 23:26:18 UTC (rev 31312)
+++ trunk/bpel/tests/org.jboss.tools.bpel.ui.bot.test/pom.xml 2011-05-13 23:42:34 UTC (rev 31313)
@@ -2,12 +2,12 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>org.jboss.tools.parent.pom</artifactId>
- <version>0.0.2-SNAPSHOT</version>
+ <groupId>org.jboss.tools.bpel</groupId>
+ <artifactId>tests</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.bpel.tests</groupId>
<artifactId>org.jboss.tools.bpel.ui.bot.test</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
-</project>
\ No newline at end of file
+</project>
Modified: trunk/bpel/tests/org.jboss.tools.bpel.ui.test/pom.xml
===================================================================
--- trunk/bpel/tests/org.jboss.tools.bpel.ui.test/pom.xml 2011-05-13 23:26:18 UTC (rev 31312)
+++ trunk/bpel/tests/org.jboss.tools.bpel.ui.test/pom.xml 2011-05-13 23:42:34 UTC (rev 31313)
@@ -2,11 +2,11 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>org.jboss.tools.parent.pom</artifactId>
- <version>0.0.2-SNAPSHOT</version>
+ <groupId>org.jboss.tools.bpel</groupId>
+ <artifactId>tests</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
</parent>
- <groupId>org.jboss.tools.bpel</groupId>
+ <groupId>org.jboss.tools.bpel.tests</groupId>
<artifactId>org.jboss.tools.bpel.ui.test</artifactId>
<version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
@@ -17,4 +17,4 @@
</properties>
-</project>
\ No newline at end of file
+</project>
Modified: trunk/bpel/tests/pom.xml
===================================================================
--- trunk/bpel/tests/pom.xml 2011-05-13 23:26:18 UTC (rev 31312)
+++ trunk/bpel/tests/pom.xml 2011-05-13 23:42:34 UTC (rev 31313)
@@ -1,10 +1,15 @@
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>bpel</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
<groupId>org.jboss.tools.bpel</groupId>
- <artifactId>org.jboss.tools.bpel.tests</artifactId>
- <name>org.jboss.tools.bpel.tests</name>
+ <artifactId>tests</artifactId>
<version>0.0.1-SNAPSHOT</version>
+ <name>bpel.tests</name>
<packaging>pom</packaging>
<modules>
<module>org.jboss.tools.bpel.ui.test</module>
14 years, 11 months