JBoss Tools SVN: r19547 - trunk/jst/plugins/org.jboss.tools.jst.web.ui/src/org/jboss/tools/jst/web/ui/editors.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2009-12-23 08:18:52 -0500 (Wed, 23 Dec 2009)
New Revision: 19547
Modified:
trunk/jst/plugins/org.jboss.tools.jst.web.ui/src/org/jboss/tools/jst/web/ui/editors/WebCompoundEditor.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-5547
Modified: trunk/jst/plugins/org.jboss.tools.jst.web.ui/src/org/jboss/tools/jst/web/ui/editors/WebCompoundEditor.java
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web.ui/src/org/jboss/tools/jst/web/ui/editors/WebCompoundEditor.java 2009-12-23 09:49:28 UTC (rev 19546)
+++ trunk/jst/plugins/org.jboss.tools.jst.web.ui/src/org/jboss/tools/jst/web/ui/editors/WebCompoundEditor.java 2009-12-23 13:18:52 UTC (rev 19547)
@@ -12,12 +12,15 @@
import org.jboss.tools.common.editor.TreeFormPage;
import org.jboss.tools.common.meta.key.WizardKeys;
+import org.jboss.tools.common.model.XFilteredTreeConstraint;
import org.jboss.tools.common.model.ui.editor.EditorDescriptor;
import org.jboss.tools.common.model.ui.editors.multipage.DefaultMultipageEditor;
+import org.jboss.tools.common.model.util.ModelFeatureFactory;
import org.jboss.tools.jst.web.tld.model.EditorTreeConstraint;
import org.jboss.tools.jst.web.ui.Messages;
public class WebCompoundEditor extends DefaultMultipageEditor {
+ public static String EDITOR_TREE_CONSTRAINT_ID = "editorTreeConstraint"; //$NON-NLS-1$
protected void doCreatePages() {
if(isAppropriateNature()) {
@@ -29,7 +32,7 @@
if(s != null) title = s;
}
treeFormPage.setTitle(title);
- ((TreeFormPage)treeFormPage).addFilter(new EditorTreeConstraint());
+ addTreeConstraint();
treeFormPage.initialize(object);
addFormPage(treeFormPage);
}
@@ -39,6 +42,18 @@
if(textEditor != null) selectionProvider.addHost("textEditor", getTextSelectionProvider()); //$NON-NLS-1$
}
+ protected void addTreeConstraint() {
+ XFilteredTreeConstraint constraint = null;
+ String editorTreeConstraintId = object.getModelEntity().getProperty(EDITOR_TREE_CONSTRAINT_ID);
+ if(editorTreeConstraintId != null) {
+ constraint = (XFilteredTreeConstraint)ModelFeatureFactory.getInstance().createFeatureInstance(editorTreeConstraintId);
+ }
+ if(constraint == null) {
+ constraint = new EditorTreeConstraint();
+ }
+ ((TreeFormPage)treeFormPage).addFilter(constraint);
+ }
+
public Object getAdapter(Class adapter) {
if (adapter == EditorDescriptor.class)
return new EditorDescriptor("web.xml"); //$NON-NLS-1$
16 years, 4 months
JBoss Tools SVN: r19546 - in trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor: template and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: dmaliarevich
Date: 2009-12-23 04:49:28 -0500 (Wed, 23 Dec 2009)
New Revision: 19546
Modified:
trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/preferences/TemplatesPreferencePage.java
trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/VpeEditAnyDialog.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-5470, Templates Preferences Page was updated.
Modified: trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/preferences/TemplatesPreferencePage.java
===================================================================
--- trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/preferences/TemplatesPreferencePage.java 2009-12-23 06:28:10 UTC (rev 19545)
+++ trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/preferences/TemplatesPreferencePage.java 2009-12-23 09:49:28 UTC (rev 19546)
@@ -13,13 +13,24 @@
import java.util.List;
import org.eclipse.jface.preference.PreferencePage;
+import org.eclipse.jface.viewers.ColumnLayoutData;
+import org.eclipse.jface.viewers.ColumnWeightData;
+import org.eclipse.jface.viewers.TableLayout;
import org.eclipse.swt.SWT;
+import org.eclipse.swt.SWTException;
+import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
-import org.eclipse.swt.events.SelectionListener;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
+import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
+import org.eclipse.swt.widgets.Event;
+import org.eclipse.swt.widgets.Listener;
+import org.eclipse.swt.widgets.Table;
+import org.eclipse.swt.widgets.TableColumn;
+import org.eclipse.swt.widgets.TableItem;
+import org.eclipse.swt.widgets.Widget;
import org.eclipse.ui.IWorkbench;
import org.eclipse.ui.IWorkbenchPreferencePage;
import org.jboss.tools.common.model.ui.action.CommandBar;
@@ -32,119 +43,253 @@
import org.jboss.tools.vpe.messages.VpeUIMessages;
public class TemplatesPreferencePage extends PreferencePage implements
- IWorkbenchPreferencePage, CommandBarListener {
- static String ADD = VpeUIMessages.TemplatesPreferencePage_Add;
- static String EDIT = VpeUIMessages.TemplatesPreferencePage_Edit;
- static String REMOVE = VpeUIMessages.TemplatesPreferencePage_Remove;
- protected TemplatesTableProvider tableProvider;// = new TemplatesTableProvider();
- protected XTable table = new XTable();
- protected CommandBar bar = new CommandBar();
- protected List dataList;
+ IWorkbenchPreferencePage, Listener {
+ private static final String[] COLUMNS_NAMES = new String[] {
+ VpeUIMessages.TemplatesTableProvider_TagName,
+ VpeUIMessages.TemplatesTableProvider_TagForDisplay,
+ VpeUIMessages.TemplatesTableProvider_URI,
+ VpeUIMessages.TemplatesTableProvider_Children};
+ private static final int[] COLUMNS_WIDTHS = new int[] {
+ 50, 50, 90, 30
+ };
+ private Table tagsTable;
+ private Button addButton;
+ private Button editButton;
+ private Button removeButton;
+ private List<VpeAnyData> tagsList;
+
protected boolean changed;
public TemplatesPreferencePage() {
-// noDefaultAndApplyButton();
setPreferenceStore(getPreferenceStore());
- init();
+ /*
+ * Initialize tags list from the file
+ */
+ tagsList = VpeTemplateManager.getInstance().getAnyTemplates();
}
public String getTitle() {
return VpeUIMessages.TEMPLATES;
}
- private void init() {
- changed = false;
- dataList = VpeTemplateManager.getInstance().getAnyTemplates();
- tableProvider = new TemplatesTableProvider(dataList);
-
- bar.getLayout().buttonWidth = 80;
- bar.getLayout().direction = SWT.VERTICAL;
- bar.setCommands(new String[]{ADD, EDIT, REMOVE});
- bar.addCommandBarListener(this);
- table.setTableProvider(tableProvider);
+ public void init(IWorkbench workbench) {
}
protected Control createContents(Composite parent) {
- Composite c = new Composite(parent, SWT.NONE);
- c.setLayoutData(new GridData(GridData.FILL_BOTH));
- GridLayout g = new GridLayout(2, false);
- c.setLayout(g);
- Control slc = table.createControl(c);
- slc.setLayoutData(new GridData(GridData.FILL_BOTH));
- Control bc = bar.createControl(c);
- GridData gd = new GridData(GridData.FILL_VERTICAL);
- bc.setLayoutData(gd);
- table.getTable().addSelectionListener(new SelectionListener() {
- public void widgetSelected(SelectionEvent e) {
- updateBars();
- }
+ /*
+ * Create main composite element with grid layout.
+ * Two columns.
+ */
+ Composite composite = new Composite(parent, SWT.NONE);
+ composite.setLayout(new GridLayout(2, false));
+ composite.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1));
+ composite.setFont(parent.getFont());
+
+ /*
+ * Create datatable with the list of unknown tags
+ */
+ tagsTable = new Table(composite, SWT.FULL_SELECTION | SWT.H_SCROLL | SWT.V_SCROLL | SWT.BORDER);
+ TableLayout layout = new TableLayout();
+ tagsTable.setLayout(layout);
+ tagsTable.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 3));
+ tagsTable.setHeaderVisible(true);
+ tagsTable.setLinesVisible(true);
+ tagsTable.addSelectionListener(new SelectionAdapter() {
+
+ @Override
public void widgetDefaultSelected(SelectionEvent e) {
widgetSelected(e);
}
+
+ @Override
+ public void widgetSelected(SelectionEvent e) {
+ super.widgetSelected(e);
+ }
+
});
+
+ /*
+ * Create columns in the table
+ */
+ ColumnLayoutData columnLayoutData;
+ for (int i = 0; i < COLUMNS_NAMES.length; i++) {
+ TableColumn column = new TableColumn(tagsTable, SWT.NONE);
+ column.setText(COLUMNS_NAMES[i]);
+ columnLayoutData = new ColumnWeightData(COLUMNS_WIDTHS[i], true);
+ layout.addColumnData(columnLayoutData);
+ }
+ /*
+ * Fill the table with stored tags
+ */
+ updateTagsTable();
- update();
- return c;
- }
+ /*
+ * Add buttons
+ */
+ addButton = new Button(composite, SWT.NONE);
+ addButton.setLayoutData(new GridData(SWT.LEFT, SWT.TOP, false, false, 1, 1));
+ addButton.setText(VpeUIMessages.TemplatesPreferencePage_Add);
+
+ editButton = new Button(composite, SWT.NONE);
+ editButton.setLayoutData(new GridData(SWT.LEFT, SWT.TOP, false, false, 1, 1));
+ editButton.setText(VpeUIMessages.TemplatesPreferencePage_Edit);
+
+ removeButton = new Button(composite, SWT.NONE);
+ removeButton.setLayoutData(new GridData(SWT.LEFT, SWT.TOP, false, false, 1, 1));
+ removeButton.setText(VpeUIMessages.TemplatesPreferencePage_Remove);
+
+ /*
+ * Adding event listeners to the buttons
+ */
+ addButton.addListener(SWT.Modify, this);
+ addButton.addListener(SWT.Selection, this);
+ editButton.addListener(SWT.Modify, this);
+ editButton.addListener(SWT.Selection, this);
+ removeButton.addListener(SWT.Modify, this);
+ removeButton.addListener(SWT.Selection, this);
- public void init(IWorkbench workbench) {
+ return composite;
}
- public void action(String command) {
- int index = table.getSelectionIndex();
- if(ADD.equals(command)) {
- add(index);
- } else if(EDIT.equals(command)) {
- edit(index);
- } else if(REMOVE.equals(command)) {
- remove(index);
+ private void updateTagsTable() {
+ if(tagsTable == null || tagsTable.isDisposed()) {
+ return;
}
- update();
- }
- public boolean performOk() {
- if(changed) {
- VpeTemplateManager.getInstance().setAnyTemplates(dataList);
+ int selectionIndex = tagsTable.getSelectionIndex();
+ /*
+ * Clear all previously saved items.
+ */
+ tagsTable.clearAll();
+ TableItem tableItem = null;
+
+ /*
+ * Recreate table items
+ */
+ for (int i = 0; i < tagsList.size(); i++) {
+ if(tagsTable.getItemCount() > i) {
+ /*
+ * Use existed items
+ */
+ tableItem = tagsTable.getItem(i);
+ } else {
+ /*
+ * Add necessary item
+ */
+ tableItem = new TableItem(tagsTable, SWT.BORDER, i);
+ }
+ /*
+ * Fill in columns.
+ * Tags table has 5 columns with checkbox in the first column.
+ */
+ String[] itemColumnsData = new String[tagsTable.getColumnCount()];
+ for (int j = 0; j < itemColumnsData.length; j++) {
+ /*
+ * Getting values from tagList
+ */
+ itemColumnsData[j] = toVisualValue(getValueAt(i, (j)));
+ }
+ /*
+ * Set cells text
+ */
+ tableItem.setText(itemColumnsData);
}
- return super.performOk();
- }
-
- void add(int index) {
- VpeAnyData data = new VpeAnyData(Constants.EMPTY, Constants.EMPTY, Constants.EMPTY);
- VpeEditAnyDialog editDialog = new VpeEditAnyDialog(getShell(), data);
- editDialog.open();
- if(data.isChanged()){
- VpeTemplateManager.getInstance().setAnyTemplate(data);
+
+ /*
+ * Restoring selection index
+ */
+ if (selectionIndex > 0 ) {
+ try {
+ tagsTable.setSelection(selectionIndex);
+ } catch (SWTException e) {
+ /*
+ * Do nothing
+ */
+ }
}
}
- void edit(int index) {
- VpeAnyData data = (VpeAnyData)dataList.get(index);
- VpeEditAnyDialog editDialog = new VpeEditAnyDialog(getShell(), data);
- editDialog.open();
- if(data.isChanged()){
- changed = true;
+ public String getValueAt(int row, int column) {
+ String result = "List is empty"; //$NON-NLS-1$
+ if (null != tagsList) {
+ VpeAnyData tagItem = (VpeAnyData)tagsList.get(row);
+ switch(column){
+ case 0:
+ result = tagItem.getName();
+ break;
+ case 1:
+ result = tagItem.getTagForDisplay();
+ break;
+ case 2:
+ result = tagItem.getUri();
+ break;
+ case 3:
+ if(tagItem.isChildren()) {
+ result = VpeUIMessages.TemplatesTableProvider_Yes;
+ } else {
+ result = VpeUIMessages.TemplatesTableProvider_No;
+ }
+ break;
+ }
}
+ return result;
}
- void remove(int index) {
- dataList.remove(index);
- changed = true;
+ private String toVisualValue(String v) {
+ if(v == null) return ""; //$NON-NLS-1$
+ if(v.indexOf('\n') >= 0) v = v.replace('\n', ' ');
+ if(v.indexOf('\t') >= 0) v = v.replace('\t', ' ');
+ if(v.indexOf('\r') >= 0) v = v.replace('\r', ' ');
+ return v;
}
- public void update() {
- if(table != null){
- table.update();
+ public boolean performOk() {
+ if(changed) {
+ /*
+ * Commit changes to the file
+ */
+ VpeTemplateManager.getInstance().setAnyTemplates(tagsList);
}
- updateBars();
+ return true;
}
-
- void updateBars() {
- bar.setEnabled(EDIT, canModify());
- bar.setEnabled(REMOVE, canModify());
+
+ public void handleEvent(Event event) {
+ Widget source = event.widget;
+ if (source == addButton) {
+ /*
+ * Handle add event
+ */
+ VpeAnyData data = new VpeAnyData(Constants.EMPTY, Constants.EMPTY, Constants.EMPTY);
+ VpeEditAnyDialog editDialog = new VpeEditAnyDialog(getShell(), data);
+ editDialog.open();
+ if(data.isChanged()) {
+ /*
+ * Add new template to the list.
+ */
+ tagsList.add(data);
+ }
+ } else if (source == editButton) {
+ /*
+ * Handle edit event
+ */
+ VpeAnyData data = (VpeAnyData) tagsList.get(tagsTable.getSelectionIndex());
+ VpeEditAnyDialog editDialog = new VpeEditAnyDialog(getShell(), data);
+ editDialog.open();
+ if(data.isChanged()){
+ changed = true;
+ }
+ } else if (source == removeButton) {
+ /*
+ * Handle remove event
+ */
+ tagsList.remove(tagsTable.getSelectionIndex());
+ } else {
+ /*
+ * Handle default event
+ */
+ }
+ /*
+ * Update tags table with the new tempales.
+ */
+ updateTagsTable();
}
-
- private boolean canModify() {
- return (table.getSelectionIndex() >= 0);
- }
-
}
Modified: trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/VpeEditAnyDialog.java
===================================================================
--- trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/VpeEditAnyDialog.java 2009-12-23 06:28:10 UTC (rev 19545)
+++ trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/VpeEditAnyDialog.java 2009-12-23 09:49:28 UTC (rev 19546)
@@ -64,6 +64,8 @@
public class VpeEditAnyDialog extends TitleAreaDialog {
private VpeAnyData data;
+ Text tagName;
+ Text tagUri;
private Button childrenCheckbox;
private Text txtTagForDisplay;
private Text txtValue;
@@ -134,7 +136,7 @@
/*
* Create Tag Name value
*/
- Text tagName = new Text(composite, SWT.BORDER);
+ tagName = new Text(composite, SWT.BORDER);
tagName.setLayoutData(new GridData(SWT.FILL, SWT.NONE, true, false, 2, 1));
String text = Constants.EMPTY;
if ((data != null) && (data.getName() != null)){
@@ -152,7 +154,7 @@
/*
* Create Tag URI value
*/
- Text tagUri = new Text(composite, SWT.BORDER);
+ tagUri = new Text(composite, SWT.BORDER);
tagUri.setLayoutData(new GridData(SWT.FILL, SWT.NONE, true, false, 2, 1));
text = Constants.EMPTY;
if ((data != null) && (data.getUri() != null)) {
@@ -263,17 +265,23 @@
@Override
protected void okPressed() {
-
- data.setChanged(data.isChanged() || (data.isChildren() != childrenCheckbox.getSelection()));
+ boolean isChanged = false;
+ if ((data.isChildren() != childrenCheckbox.getSelection())
+ || isChanged(data, data.getName(), tagName.getText())
+ || isChanged(data, data.getUri(), tagUri.getText())
+ || isChanged(data, data.getTagForDisplay(), txtTagForDisplay.getText())
+ || isChanged(data, data.getValue(), txtValue.getText())
+ || isChanged(data, data.getStyle(), txtStyle.getText())) {
+ isChanged = true;
+ }
+
+ data.setChanged(isChanged);
+
data.setChildren(childrenCheckbox.getSelection());
-
- data.setChanged(isChanged(data,data.getTagForDisplay(),txtTagForDisplay.getText()));
+ data.setName(tagName.getText().trim());
+ data.setUri(tagUri.getText().trim());
data.setTagForDisplay(txtTagForDisplay.getText().trim());
-
- data.setChanged(isChanged(data, data.getValue(), txtValue.getText()));
data.setValue(txtValue.getText().trim());
-
- data.setChanged(isChanged(data, data.getStyle(), txtStyle.getText()));
data.setStyle(txtStyle.getText());
super.okPressed();
@@ -281,14 +289,18 @@
private boolean isChanged(VpeAnyData data, String oldValue, String newValue) {
boolean isChanged = false;
- if (oldValue == null) oldValue = ""; //$NON-NLS-1$
- if (newValue == null) newValue = ""; //$NON-NLS-1$
+ if (oldValue == null) {
+ oldValue = Constants.EMPTY;
+ }
+ if (newValue == null) {
+ newValue = Constants.EMPTY;
+ }
if (data.isCaseSensitive()) {
isChanged = !oldValue.trim().equals(newValue.trim());
} else {
isChanged = !oldValue.trim().equalsIgnoreCase(newValue.trim());
}
- return data.isChanged() || isChanged;
+ return isChanged;
}
/**
16 years, 4 months
JBoss Tools SVN: r19545 - trunk/esb/plugins/org.jboss.tools.esb.project.core/src/org/jboss/tools/esb/core/runtime.
by jbosstools-commits@lists.jboss.org
Author: dennyxu
Date: 2009-12-23 01:28:10 -0500 (Wed, 23 Dec 2009)
New Revision: 19545
Modified:
trunk/esb/plugins/org.jboss.tools.esb.project.core/src/org/jboss/tools/esb/core/runtime/JBossRuntimeManager.java
Log:
JBIDE-5496: remove useless methods
Modified: trunk/esb/plugins/org.jboss.tools.esb.project.core/src/org/jboss/tools/esb/core/runtime/JBossRuntimeManager.java
===================================================================
--- trunk/esb/plugins/org.jboss.tools.esb.project.core/src/org/jboss/tools/esb/core/runtime/JBossRuntimeManager.java 2009-12-23 06:27:41 UTC (rev 19544)
+++ trunk/esb/plugins/org.jboss.tools.esb.project.core/src/org/jboss/tools/esb/core/runtime/JBossRuntimeManager.java 2009-12-23 06:28:10 UTC (rev 19545)
@@ -371,18 +371,9 @@
return isValidESBStandaloneRuntimeDir(path, version, configuration);
}
-// private static boolean isValidSoapContainedESBRuntime(String path, String version){
-// return isValidESBStandaloneRuntimeDir(path, version);
-// }
- @Deprecated
- public static boolean getResttaJar(String path, String asFoldername, String version, String configuration){
- return isValidESBStandaloneRuntimeDir(path, version, configuration);
- }
-
-
public static boolean isValidESBStandaloneRuntimeDir(String path, String version, String configuration) {
IESBRuntimeResolver resolver = null;
if( parserMap.get(version) != null){
16 years, 4 months
JBoss Tools SVN: r19544 - branches/jbosstools-3.1.0.RC1/esb/plugins/org.jboss.tools.esb.project.core/src/org/jboss/tools/esb/core/runtime.
by jbosstools-commits@lists.jboss.org
Author: dennyxu
Date: 2009-12-23 01:27:41 -0500 (Wed, 23 Dec 2009)
New Revision: 19544
Modified:
branches/jbosstools-3.1.0.RC1/esb/plugins/org.jboss.tools.esb.project.core/src/org/jboss/tools/esb/core/runtime/JBossRuntimeManager.java
Log:
JBIDE-5496: remove useless methods
Modified: branches/jbosstools-3.1.0.RC1/esb/plugins/org.jboss.tools.esb.project.core/src/org/jboss/tools/esb/core/runtime/JBossRuntimeManager.java
===================================================================
--- branches/jbosstools-3.1.0.RC1/esb/plugins/org.jboss.tools.esb.project.core/src/org/jboss/tools/esb/core/runtime/JBossRuntimeManager.java 2009-12-23 02:46:13 UTC (rev 19543)
+++ branches/jbosstools-3.1.0.RC1/esb/plugins/org.jboss.tools.esb.project.core/src/org/jboss/tools/esb/core/runtime/JBossRuntimeManager.java 2009-12-23 06:27:41 UTC (rev 19544)
@@ -371,18 +371,8 @@
return isValidESBStandaloneRuntimeDir(path, version, configuration);
}
-// private static boolean isValidSoapContainedESBRuntime(String path, String version){
-// return isValidESBStandaloneRuntimeDir(path, version);
-// }
- @Deprecated
- public static boolean getResttaJar(String path, String asFoldername, String version, String configuration){
- return isValidESBStandaloneRuntimeDir(path, version, configuration);
- }
-
-
-
public static boolean isValidESBStandaloneRuntimeDir(String path, String version, String configuration) {
IESBRuntimeResolver resolver = null;
if( parserMap.get(version) != null){
16 years, 4 months
JBoss Tools SVN: r19543 - trunk/bpel/plugins/org.eclipse.bpel.ui/src/org/eclipse/bpel/ui/properties.
by jbosstools-commits@lists.jboss.org
Author: Grid.Qian
Date: 2009-12-22 21:46:13 -0500 (Tue, 22 Dec 2009)
New Revision: 19543
Modified:
trunk/bpel/plugins/org.eclipse.bpel.ui/src/org/eclipse/bpel/ui/properties/VariablePartAssignCategory.java
Log:
JBIDE-5453: When initializer is created, it appears to be selected but its text is not displayed
Modified: trunk/bpel/plugins/org.eclipse.bpel.ui/src/org/eclipse/bpel/ui/properties/VariablePartAssignCategory.java
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.ui/src/org/eclipse/bpel/ui/properties/VariablePartAssignCategory.java 2009-12-22 17:58:18 UTC (rev 19542)
+++ trunk/bpel/plugins/org.eclipse.bpel.ui/src/org/eclipse/bpel/ui/properties/VariablePartAssignCategory.java 2009-12-23 02:46:13 UTC (rev 19543)
@@ -587,10 +587,6 @@
Copy copy = BPELFactory.eINSTANCE.createCopy();
Assign a = (Assign) ((To) side.getCopyRuleSide()).getContainer()
.getContainer();
- getCommandFramework()
- .execute(
- wrapInShowContextCommand(new InsertCopyCommand(a,
- copy, 0)));
To to = BPELFactory.eINSTANCE.createTo();
From from = BPELFactory.eINSTANCE.createFrom();
copy.setFrom(from);
@@ -598,6 +594,10 @@
from.setLiteral(literal);
to.setVariable(side.getVariable());
to.setPart(side.getPart());
+ getCommandFramework()
+ .execute(
+ wrapInShowContextCommand(new InsertCopyCommand(a,
+ copy, 0)));
} catch (Exception e) {
throw new IllegalStateException(
"Can't generate initializer, check WSDL file");
16 years, 4 months
JBoss Tools SVN: r19542 - in trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks: graphical/editors and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: bfitzpat
Date: 2009-12-22 12:58:18 -0500 (Tue, 22 Dec 2009)
New Revision: 19542
Modified:
trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/configuration/editors/SmooksReaderFormPage.java
trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/graphical/editors/SmooksProcessGraphicalEditor.java
Log:
OPEN - issue JBIDE-5423: Smooks editor takes up too much room on screen
https://jira.jboss.org/jira/browse/JBIDE-5423 - fixes for scroll panels
Modified: trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/configuration/editors/SmooksReaderFormPage.java
===================================================================
--- trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/configuration/editors/SmooksReaderFormPage.java 2009-12-22 17:57:31 UTC (rev 19541)
+++ trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/configuration/editors/SmooksReaderFormPage.java 2009-12-22 17:58:18 UTC (rev 19542)
@@ -169,6 +169,7 @@
protected boolean lockCheck = false;
private Button removeInputDataButton;
private Button addInputDataButton;
+ private ScrolledPageBook scrolledPageBook;
public SmooksReaderFormPage(FormEditor editor, String id, String title) {
super(editor, id, title);
@@ -381,12 +382,12 @@
FillLayout flayout = new FillLayout();
section.setLayout(flayout);
- ScrolledPageBook pageBook = new ScrolledPageBook(section);
- pageBook.setBackground(toolkit.getColors().getBackground());
- section.setClient(pageBook);
+ scrolledPageBook = new ScrolledPageBook(section);
+ scrolledPageBook.setBackground(toolkit.getColors().getBackground());
+ section.setClient(scrolledPageBook);
- readerConfigComposite = pageBook.createPage(pageBook);
- pageBook.showPage(pageBook);
+ readerConfigComposite = scrolledPageBook.createPage(scrolledPageBook);
+ scrolledPageBook.showPage(scrolledPageBook);
GridLayout gl = new GridLayout();
gl.numColumns = 2;
@@ -716,6 +717,7 @@
}
if (readerConfigComposite != null) {
disposeCompositeControls(readerConfigComposite, null);
+ scrolledPageBook.reflow(true);
}
if (reader instanceof EObject) {
Object obj = ((EObject) reader);
@@ -762,7 +764,12 @@
IItemPropertySource.class);
modelPanelCreator.createModelPanel(reader, getManagedForm().getToolkit(), readerConfigComposite, ps,
(ISmooksModelProvider) getEditor(), getEditor());
- readerConfigComposite.getParent().layout();
+ Composite parentPage = readerConfigComposite.getParent();
+ if(parentPage != null){
+ parentPage.layout();
+ }
+ scrolledPageBook.reflow(true);
+
} catch (Exception e) {
e.printStackTrace();
}
Modified: trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/graphical/editors/SmooksProcessGraphicalEditor.java
===================================================================
--- trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/graphical/editors/SmooksProcessGraphicalEditor.java 2009-12-22 17:57:31 UTC (rev 19541)
+++ trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/graphical/editors/SmooksProcessGraphicalEditor.java 2009-12-22 17:58:18 UTC (rev 19542)
@@ -966,7 +966,7 @@
if (page != null && page instanceof IEditorPart) {
try {
parent.setLayout(new FillLayout());
-
+
ITaskNodeProvider nodeProvider = (ITaskNodeProvider) ((IEditorPart) page)
.getAdapter(ITaskNodeProvider.class);
if (nodeProvider != null) {
16 years, 4 months
JBoss Tools SVN: r19541 - in trunk/esb/plugins/org.jboss.tools.esb.core: src/org/jboss/tools/esb/core/model and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2009-12-22 12:57:31 -0500 (Tue, 22 Dec 2009)
New Revision: 19541
Added:
trunk/esb/plugins/org.jboss.tools.esb.core/src/org/jboss/tools/esb/core/model/SpecificPropertyConverter.java
trunk/esb/plugins/org.jboss.tools.esb.core/src/org/jboss/tools/esb/core/model/converters/FTPListenerConverter.java
Modified:
trunk/esb/plugins/org.jboss.tools.esb.core/resources/meta/esb12.meta
trunk/esb/plugins/org.jboss.tools.esb.core/src/org/jboss/tools/esb/core/model/ESBLoaderUtil.java
trunk/esb/plugins/org.jboss.tools.esb.core/src/org/jboss/tools/esb/core/model/SpecificActionLoader.java
trunk/esb/plugins/org.jboss.tools.esb.core/src/org/jboss/tools/esb/core/model/converters/IPropertyConverter.java
trunk/esb/plugins/org.jboss.tools.esb.core/src/org/jboss/tools/esb/core/model/converters/ListConverter.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-5547
Modified: trunk/esb/plugins/org.jboss.tools.esb.core/resources/meta/esb12.meta
===================================================================
--- trunk/esb/plugins/org.jboss.tools.esb.core/resources/meta/esb12.meta 2009-12-22 17:22:02 UTC (rev 19540)
+++ trunk/esb/plugins/org.jboss.tools.esb.core/resources/meta/esb12.meta 2009-12-22 17:57:31 UTC (rev 19541)
@@ -287,6 +287,132 @@
<XDependencies/>
</XModelEntity>
<XModelEntity ImplementingClass="%ESB%"
+ PROPERTIES="formFactory=%Default%;formLayout=org.jboss.tools.esb.ui.editor.form.ESBXMLFormLayoutData;converter=converter" name="ESBFTPCache">
+ <XChildrenEntities/>
+ <XEntityRenderer>
+ <ICONS>
+ <ICON info="main.esb.property" type="main"/>
+ </ICONS>
+ </XEntityRenderer>
+ <XModelAttributes>
+ <XModelAttribute default="cache" loader="ElementType" name="element type">
+ <Editor name="Uneditable"/>
+ </XModelAttribute>
+ <XModelAttribute PROPERTIES="category=general;id=true"
+ default="Cache" name="name" visibility="false" xmlname="name">
+ <Editor name="Uneditable"/>
+ </XModelAttribute>
+ <XModelAttribute PROPERTIES="category=general;pre=true"
+ name="max nodes" xmlname="maxNodes"/>
+ <XModelAttribute PROPERTIES="category=general;pre=true"
+ name="time to live" xmlname="timeToLiveSeconds"/>
+ <XModelAttribute PROPERTIES="category=general;pre=true"
+ name="max age" xmlname="maxAgeSeconds"/>
+ <XModelAttribute TRIM="no" name="comment" visibility="false" xmlname="#comment">
+ <Editor name="Note"/>
+ </XModelAttribute>
+ </XModelAttributes>
+ <XActionItem kind="list">
+ <XActionItem ICON="action.empty" displayName="Create" kind="list" name="EditActions"/>
+ <XActionItemReference entity="ESBPreAlias" name="CopyActions"/>
+ <XActionItemReference entity="ESBPreAlias" name="DeleteActions"/>
+ <XActionItemReference entity="ESBPreAlias" name="Properties"/>
+ <XActionItemReference entity="ESBPreAlias" name="MoveActions"/>
+ </XActionItem>
+ <XDependencies/>
+ </XModelEntity>
+ <XModelEntity ImplementingClass="%ESB%"
+ PROPERTIES="formFactory=%Default%;formLayout=org.jboss.tools.esb.ui.editor.form.ESBXMLFormLayoutData;children=%ESBOrdered%;hasConvertedProperties=true"
+ XMLSUBPATH="ftp-listener" name="ESBFTPListener120">
+ <XChildrenEntities>
+ <XChildEntity name="ESBProperty"/>
+ <XChildEntity maxCount="1" name="ESBFTPMessageFilter101" required="yes"/>
+ <XChildEntity maxCount="1" name="ESBFTPCache" required="yes"/>
+ <XChildEntity maxCount="1" name="ESBFTPRemote" required="yes"/>
+ </XChildrenEntities>
+ <XEntityRenderer>
+ <ICONS>
+ <ICON info="main.esb.listener" type="main"/>
+ </ICONS>
+ </XEntityRenderer>
+ <XModelAttributes>
+ <XModelAttribute default="ftp listener" loader="ElementType" name="element type">
+ <Editor name="Uneditable"/>
+ </XModelAttribute>
+ <XModelAttributeReference
+ attributes="name,channel id ref,max threads,is gateway"
+ entity="ESBListener101" name="listener"/>
+ <XModelAttributeReference
+ attributes="poll frequency seconds,schedule frequency,schedule id ref"
+ entity="ESBScheduledListener101" name="scheduled listener"/>
+ <XModelAttribute TRIM="no" name="comment" visibility="false" xmlname="#comment">
+ <Editor name="Note"/>
+ </XModelAttribute>
+ </XModelAttributes>
+ <XActionItem kind="list">
+ <XActionItem kind="list" name="CreateActions">
+ <XActionItemReference entity="ESBAction101" name="AddProperty" path="CreateActions/AddProperty"/>
+ </XActionItem>
+ <XActionItem ICON="action.empty" displayName="Create" kind="list" name="EditActions"/>
+ <XActionItemReference entity="ESBProperty" name="CopyActions"/>
+ <XActionItemReference entity="ESBProperty" name="DeleteActions"/>
+ <XActionItemReference entity="ESBProperty" name="Properties"/>
+ <XActionItemReference entity="ESBProperty" name="MoveActions"/>
+ </XActionItem>
+ <XDependencies/>
+ </XModelEntity>
+ <XModelEntity ImplementingClass="%ESB%"
+ PROPERTIES="formFactory=%Default%;formLayout=org.jboss.tools.esb.ui.editor.form.ESBXMLFormLayoutData;converter=converter" name="ESBFTPRemote">
+ <XChildrenEntities/>
+ <XEntityRenderer>
+ <ICONS>
+ <ICON info="main.esb.property" type="main"/>
+ </ICONS>
+ </XEntityRenderer>
+ <XModelAttributes>
+ <XModelAttribute default="Remote Filesystem Strategy"
+ loader="ElementType" name="element type">
+ <Editor name="Uneditable"/>
+ </XModelAttribute>
+ <XModelAttribute PROPERTIES="category=general;id=true"
+ default="Remote Filesystem Strategy" name="name" visibility="false" xmlname="name">
+ <Editor name="Uneditable"/>
+ </XModelAttribute>
+ <XModelAttribute PROPERTIES="category=general;pre=true" name="class" xmlname="remoteFilesystemStrategy-class">
+ <Editor name="AccessibleJava"/>
+ </XModelAttribute>
+ <XModelAttribute PROPERTIES="category=general;pre=true"
+ name="config file" xmlname="remoteFilesystemStrategy-configFile">
+ <Constraint loader="Tree">
+ <value name="ESBResourceTree"/>
+ <value name="extensions=xml"/>
+ <value name="linkAction=OpenConfig"/>
+ </Constraint>
+ <Editor name="TreeChooser"/>
+ </XModelAttribute>
+ <XModelAttribute PROPERTIES="category=general;pre=true"
+ name="cache listener" xmlname="removeFilesystemStrategy-cacheListener">
+ <Editor name="AccessibleJava"/>
+ </XModelAttribute>
+ <XModelAttribute TRIM="no" name="comment" visibility="false" xmlname="#comment">
+ <Editor name="Note"/>
+ </XModelAttribute>
+ </XModelAttributes>
+ <XActionItem kind="list">
+ <XActionItem
+ HandlerClassName="org.jboss.tools.esb.core.model.handlers.OpenESBResourceHandler"
+ ICON="action.empty"
+ PROPERTIES="actionpath=Open;attribute=config file"
+ displayName="Open Config File" kind="action" name="OpenConfig"/>
+ <XActionItem ICON="action.empty" displayName="Create" kind="list" name="EditActions"/>
+ <XActionItemReference entity="ESBPreAlias" name="CopyActions"/>
+ <XActionItemReference entity="ESBPreAlias" name="DeleteActions"/>
+ <XActionItemReference entity="ESBPreAlias" name="Properties"/>
+ <XActionItemReference entity="ESBPreAlias" name="MoveActions"/>
+ </XActionItem>
+ <XDependencies/>
+ </XModelEntity>
+ <XModelEntity ImplementingClass="%ESB%"
PROPERTIES="formFactory=%Default%;formLayout=org.jboss.tools.esb.ui.editor.form.ESBXMLFormLayoutData;saveDefault=false"
XMLSUBPATH="globals" name="ESBGlobals120">
<XChildrenEntities>
@@ -554,7 +680,7 @@
<XChildEntity name="ESBJCAGateway120"/>
<XChildEntity name="ESBJMSListener101"/>
<XChildEntity name="ESBFSListener101"/>
- <XChildEntity name="ESBFTPListener101"/>
+ <XChildEntity name="ESBFTPListener120"/>
<XChildEntity name="ESBSQLListener120"/>
<XChildEntity name="ESBHibernateListener101"/>
<XChildEntity name="ESBJBRListener101"/>
@@ -592,7 +718,14 @@
</XActionItem>
<XActionItem kind="list" name="Separator"/>
<XActionItemReference entity="ESBListeners101" name="AddFSListener" path="CreateActions/AddFSListener"/>
- <XActionItemReference entity="ESBListeners101" name="AddFTPListener" path="CreateActions/AddFTPListener"/>
+ <XActionItem HandlerClassName="%Create%" ICON="action.empty"
+ PROPERTIES="validator.add=true" WizardClassName="%Default%"
+ displayName="FTP Listener..." kind="action" name="AddFTPListener">
+ <EntityData EntityName="ESBFTPListener120">
+ <AttributeData AttributeName="name"/>
+ <AttributeData AttributeName="channel id ref" Mandatory="no"/>
+ </EntityData>
+ </XActionItem>
<XActionItemReference entity="ESBListeners101"
name="AddGroovyListener" path="CreateActions/AddGroovyListener"/>
<XActionItemReference entity="ESBListeners101"
Modified: trunk/esb/plugins/org.jboss.tools.esb.core/src/org/jboss/tools/esb/core/model/ESBLoaderUtil.java
===================================================================
--- trunk/esb/plugins/org.jboss.tools.esb.core/src/org/jboss/tools/esb/core/model/ESBLoaderUtil.java 2009-12-22 17:22:02 UTC (rev 19540)
+++ trunk/esb/plugins/org.jboss.tools.esb.core/src/org/jboss/tools/esb/core/model/ESBLoaderUtil.java 2009-12-22 17:57:31 UTC (rev 19541)
@@ -53,15 +53,20 @@
public void loadChildren(Element element, XModelObject o) {
super.loadChildren(element, o);
- if(SpecificActionLoader.instance.isActionsFolder(o.getModelEntity().getName())) {
+ String entity = o.getModelEntity().getName();
+ if(SpecificActionLoader.instance.isActionsFolder(entity)) {
SpecificActionLoader.instance.convertChildrenToSpecific(o);
- }
+ } else if(SpecificPropertyConverter.instance.isListenersFolder(entity)) {
+ SpecificPropertyConverter.instance.convertChildrenToSpecific(o);
+ } //TODO add other folders
}
public boolean save(Element parent, XModelObject o) {
if(!needToSave(o)) return true;
if(SpecificActionLoader.instance.isPreActionEntity(o)) {
o = SpecificActionLoader.instance.convertSpecificActionToBasic(o);
+ } else if("true".equals(o.getModelEntity().getProperty("hasConvertedProperties"))) {
+ o = SpecificPropertyConverter.instance.convertSpecificToBasic(o);
}
return super.save(parent, o);
}
Modified: trunk/esb/plugins/org.jboss.tools.esb.core/src/org/jboss/tools/esb/core/model/SpecificActionLoader.java
===================================================================
--- trunk/esb/plugins/org.jboss.tools.esb.core/src/org/jboss/tools/esb/core/model/SpecificActionLoader.java 2009-12-22 17:22:02 UTC (rev 19540)
+++ trunk/esb/plugins/org.jboss.tools.esb.core/src/org/jboss/tools/esb/core/model/SpecificActionLoader.java 2009-12-22 17:57:31 UTC (rev 19541)
@@ -125,23 +125,9 @@
} catch (XModelException e) {
ESBCorePlugin.log(e);
}
- XAttribute[] as = entity.getAttributes();
- for (int i = 0; i < as.length; i++) {
- String pre = as[i].getProperty("pre");
- if(pre == null || pre.length() == 0) continue;
- if("true".equals(pre)) {
- String name = as[i].getXMLName();
- XModelObject p = basic.getChildByPath(name);
- if(p == null) continue;
- String value = p.getAttributeValue("value");
- action.setAttributeValue(as[i].getName(), value);
- action.set(as[i].getXMLName() + ".#comment", p.getAttributeValue("comment"));
- p.removeFromParent();
- } else {
- //very specific cases
- }
- }
-
+
+ copyBasicPropertiesToSpecificAtttributes(basic, action);
+
XChild[] ce = action.getModelEntity().getChildren();
for (int i = 0; i < ce.length; i++) {
String childEntityName = ce[i].getName();
@@ -176,24 +162,8 @@
}
XModelEntity entity = action.getModelEntity();
- XAttribute[] as = entity.getAttributes();
- for (int i = 0; i < as.length; i++) {
- String pre = as[i].getProperty("pre");
- if(pre == null || pre.length() == 0) continue;
- if("true".equals(pre)) {
- String value = action.getAttributeValue(as[i].getName());
- if(value == null || value.length() == 0 || value.equals(as[i].getDefaultValue())) {
- if(!"always".equals(as[i].getProperty("save"))) continue;
- }
- XModelObject p = action.getModel().createModelObject(ESBConstants.ENT_ESB_PROPERTY, null);
- p.setAttributeValue("name", as[i].getXMLName());
- p.setAttributeValue("value", value);
- p.setAttributeValue("comment", action.get(as[i].getXMLName() + ".#comment"));
- result.addChild(p);
- } else {
- //very specific cases
- }
- }
+
+ copySpecificAtttributesToBasicProperties(action, result);
XChild[] ce = entity.getChildren();
for (int i = 0; i < ce.length; i++) {
@@ -218,4 +188,46 @@
String converter = childEntity.getProperty("converter");
return (converter == null) ? null : propertyConverters.get(converter);
}
+
+ public static void copyBasicPropertiesToSpecificAtttributes(XModelObject basic, XModelObject specific) {
+ XModelEntity entity = specific.getModelEntity();
+ XAttribute[] as = entity.getAttributes();
+ for (int i = 0; i < as.length; i++) {
+ String pre = as[i].getProperty("pre");
+ if(pre == null || pre.length() == 0) continue;
+ if("true".equals(pre)) {
+ String name = as[i].getXMLName();
+ XModelObject p = basic.getChildByPath(name);
+ if(p == null) continue;
+ String value = p.getAttributeValue("value");
+ specific.setAttributeValue(as[i].getName(), value);
+ specific.set(as[i].getXMLName() + ".#comment", p.getAttributeValue("comment"));
+ p.removeFromParent();
+ } else {
+ //very specific cases
+ }
+ }
+ }
+
+ public static void copySpecificAtttributesToBasicProperties(XModelObject specific, XModelObject basic) {
+ XModelEntity entity = specific.getModelEntity();
+ XAttribute[] as = entity.getAttributes();
+ for (int i = 0; i < as.length; i++) {
+ String pre = as[i].getProperty("pre");
+ if(pre == null || pre.length() == 0) continue;
+ if("true".equals(pre)) {
+ String value = specific.getAttributeValue(as[i].getName());
+ if(value == null || value.length() == 0 || value.equals(as[i].getDefaultValue())) {
+ if(!"always".equals(as[i].getProperty("save"))) continue;
+ }
+ XModelObject p = specific.getModel().createModelObject(ESBConstants.ENT_ESB_PROPERTY, null);
+ p.setAttributeValue("name", as[i].getXMLName());
+ p.setAttributeValue("value", value);
+ p.setAttributeValue("comment", specific.get(as[i].getXMLName() + ".#comment"));
+ basic.addChild(p);
+ } else {
+ //very specific cases
+ }
+ }
+ }
}
Added: trunk/esb/plugins/org.jboss.tools.esb.core/src/org/jboss/tools/esb/core/model/SpecificPropertyConverter.java
===================================================================
--- trunk/esb/plugins/org.jboss.tools.esb.core/src/org/jboss/tools/esb/core/model/SpecificPropertyConverter.java (rev 0)
+++ trunk/esb/plugins/org.jboss.tools.esb.core/src/org/jboss/tools/esb/core/model/SpecificPropertyConverter.java 2009-12-22 17:57:31 UTC (rev 19541)
@@ -0,0 +1,78 @@
+/*******************************************************************************
+ * Copyright (c) 2007 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.esb.core.model;
+
+import org.jboss.tools.common.model.XModelObject;
+import org.jboss.tools.common.model.impl.RegularObjectImpl;
+import org.jboss.tools.esb.core.model.converters.FTPListenerConverter;
+import org.jboss.tools.esb.core.model.converters.IPropertyConverter;
+
+/**
+ * When loading from xml, reads 'raw' list of esb property children of loaded object
+ * and converts them into 'rich' specific properties (attributes or children).
+ * Since just loaded objects are not yet used anywhere, there is no need to make a copy.
+ *
+ * When saving object to xml, converts 'rich' properties into basic esb properties
+ * and adds them as children; this is done with copy object, so that leave working
+ * model object unmodified.
+ *
+ * Contrary to conversion of actions, no entity change occurs.
+ *
+ * @author Viacheslav Kabanovich
+ */
+public class SpecificPropertyConverter implements ESBConstants {
+ public static SpecificPropertyConverter instance = new SpecificPropertyConverter();
+
+ public SpecificPropertyConverter() {}
+
+ public boolean isListenersFolder(String entity) {
+ return entity.startsWith(ENT_ESB_LISTENERS);
+ }
+
+ public void convertChildrenToSpecific(XModelObject actions) {
+ boolean modified = false;
+
+ XModelObject[] as = actions.getChildren();
+ for (int i = 0; i < as.length; i++) {
+ XModelObject action = convertBasicToSpecific(actions, as[i]);
+ if(action != null) {
+ as[i] = action;
+ modified = true;
+ }
+ }
+ if(modified) {
+ ((RegularObjectImpl)actions).replaceChildren(as);
+ }
+
+ }
+
+ public XModelObject convertBasicToSpecific(XModelObject parent, XModelObject basic) {
+ String entity = basic.getModelEntity().getName();
+ if("ESBFTPListener120".equals(entity)) {
+ IPropertyConverter converter = new FTPListenerConverter();
+ converter.toSpecific(basic, basic);
+ }
+ //returns null because no new object is created
+ return null;
+ }
+
+ public XModelObject convertSpecificToBasic(XModelObject specific) {
+ String entity = specific.getModelEntity().getName();
+ XModelObject basic = specific;
+ if("ESBFTPListener120".equals(entity)) {
+ basic = basic.copy();
+ IPropertyConverter converter = new FTPListenerConverter();
+ converter.toBasic(basic, specific);
+ }
+ return basic;
+ }
+
+}
Property changes on: trunk/esb/plugins/org.jboss.tools.esb.core/src/org/jboss/tools/esb/core/model/SpecificPropertyConverter.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Added: trunk/esb/plugins/org.jboss.tools.esb.core/src/org/jboss/tools/esb/core/model/converters/FTPListenerConverter.java
===================================================================
--- trunk/esb/plugins/org.jboss.tools.esb.core/src/org/jboss/tools/esb/core/model/converters/FTPListenerConverter.java (rev 0)
+++ trunk/esb/plugins/org.jboss.tools.esb.core/src/org/jboss/tools/esb/core/model/converters/FTPListenerConverter.java 2009-12-22 17:57:31 UTC (rev 19541)
@@ -0,0 +1,26 @@
+package org.jboss.tools.esb.core.model.converters;
+
+import org.jboss.tools.common.model.XModelObject;
+import org.jboss.tools.esb.core.model.SpecificActionLoader;
+
+public class FTPListenerConverter implements IPropertyConverter {
+
+ public FTPListenerConverter() {}
+
+ public void toBasic(XModelObject basic, XModelObject specific) {
+ XModelObject cache = specific.getChildByPath("Cache");
+ SpecificActionLoader.copySpecificAtttributesToBasicProperties(cache, basic);
+
+ XModelObject remote = specific.getChildByPath("Remote Filesystem Strategy");
+ SpecificActionLoader.copySpecificAtttributesToBasicProperties(remote, basic);
+ }
+
+ public void toSpecific(XModelObject basic, XModelObject specific) {
+ XModelObject cache = specific.getChildByPath("Cache");
+ SpecificActionLoader.copyBasicPropertiesToSpecificAtttributes(basic, cache);
+
+ XModelObject remote = specific.getChildByPath("Remote Filesystem Strategy");
+ SpecificActionLoader.copyBasicPropertiesToSpecificAtttributes(basic, remote);
+ }
+
+}
Property changes on: trunk/esb/plugins/org.jboss.tools.esb.core/src/org/jboss/tools/esb/core/model/converters/FTPListenerConverter.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Modified: trunk/esb/plugins/org.jboss.tools.esb.core/src/org/jboss/tools/esb/core/model/converters/IPropertyConverter.java
===================================================================
--- trunk/esb/plugins/org.jboss.tools.esb.core/src/org/jboss/tools/esb/core/model/converters/IPropertyConverter.java 2009-12-22 17:22:02 UTC (rev 19540)
+++ trunk/esb/plugins/org.jboss.tools.esb.core/src/org/jboss/tools/esb/core/model/converters/IPropertyConverter.java 2009-12-22 17:57:31 UTC (rev 19541)
@@ -13,12 +13,16 @@
import org.jboss.tools.common.model.XModelObject;
/**
+ * Used for converting one complex property of out-of-the-box action.
+ *
+ * Used for converting set of properties of FTP listener and other objects.
+ *
* @author Viacheslav Kabanovich
*/
public interface IPropertyConverter {
- public void toSpecific(XModelObject basicAction, XModelObject specificAction);
+ public void toSpecific(XModelObject basic, XModelObject specific);
- public void toBasic(XModelObject basicAction, XModelObject specificAction);
+ public void toBasic(XModelObject basic, XModelObject specific);
}
Modified: trunk/esb/plugins/org.jboss.tools.esb.core/src/org/jboss/tools/esb/core/model/converters/ListConverter.java
===================================================================
--- trunk/esb/plugins/org.jboss.tools.esb.core/src/org/jboss/tools/esb/core/model/converters/ListConverter.java 2009-12-22 17:22:02 UTC (rev 19540)
+++ trunk/esb/plugins/org.jboss.tools.esb.core/src/org/jboss/tools/esb/core/model/converters/ListConverter.java 2009-12-22 17:57:31 UTC (rev 19541)
@@ -21,6 +21,8 @@
import org.jboss.tools.esb.core.model.ESBConstants;
/**
+ * Class for converting out-of-the-box action property that may have list of child tags.
+ *
* @author Viacheslav Kabanovich
*/
public abstract class ListConverter implements IPropertyConverter {
16 years, 4 months
JBoss Tools SVN: r19540 - trunk/bpel/releng.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2009-12-22 12:22:02 -0500 (Tue, 22 Dec 2009)
New Revision: 19540
Modified:
trunk/bpel/releng/build.properties
Log:
use testLocal instead of test to possibly include more permgen/heap space for testing
Modified: trunk/bpel/releng/build.properties
===================================================================
--- trunk/bpel/releng/build.properties 2009-12-22 16:36:37 UTC (rev 19539)
+++ trunk/bpel/releng/build.properties 2009-12-22 17:22:02 UTC (rev 19540)
@@ -12,7 +12,7 @@
mainFeatureToBuildID=org.jboss.tools.bpel.sdk.feature
testFeatureToBuildID=org.jboss.tools.bpel.tests.feature
-build.steps=buildUpdate,buildTests,generateDigests,test,publish,cleanup
+build.steps=buildUpdate,buildTests,generateDigests,testLocal,publish,cleanup
JAVA14_HOME=${JAVA_HOME}
JAVA50_HOME=${JAVA_HOME}
16 years, 4 months
JBoss Tools SVN: r19539 - in trunk/hibernatetools/plugins: org.hibernate.eclipse.console/src/org/hibernate/eclipse/console and 2 other directories.
by jbosstools-commits@lists.jboss.org
Author: vyemialyanchyk
Date: 2009-12-22 11:36:37 -0500 (Tue, 22 Dec 2009)
New Revision: 19539
Modified:
trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/HibernateConsoleMessages.java
trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/HibernateConsoleMessages.properties
trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/views/QueryPageViewer.java
trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/views/properties/QueryPagePropertySource.java
trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console/AbstractQueryPage.java
trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console/HQLQueryPage.java
trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console/JavaPage.java
trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console/QueryPage.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-4450 - fix
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console/AbstractQueryPage.java
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console/AbstractQueryPage.java 2009-12-22 16:30:28 UTC (rev 19538)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console/AbstractQueryPage.java 2009-12-22 16:36:37 UTC (rev 19539)
@@ -43,6 +43,7 @@
protected long queryTime = -1; //shows how long query runs
protected boolean sticky = true;
private List<Throwable> exceptions = new ArrayList<Throwable>();
+ protected String tabName;
/**
* @param i
@@ -143,4 +144,13 @@
public long getQueryTime(){
return queryTime;
}
+
+ public String getTabName() {
+ return tabName;
+ }
+ public void setTabName(String tabName) {
+ String oldValue = this.tabName;
+ this.tabName = tabName;
+ pcs.firePropertyChange("tabName", oldValue, tabName); //$NON-NLS-1$
+ }
}
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console/HQLQueryPage.java
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console/HQLQueryPage.java 2009-12-22 16:30:28 UTC (rev 19538)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console/HQLQueryPage.java 2009-12-22 16:36:37 UTC (rev 19539)
@@ -97,6 +97,7 @@
public HQLQueryPage(ConsoleConfiguration cfg, String string, QueryInputModel model) {
super(cfg);
queryString = string;
+ setTabName(getQueryString().replace('\n', ' ').replace('\r', ' '));
this.model = model;
}
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console/JavaPage.java
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console/JavaPage.java 2009-12-22 16:30:28 UTC (rev 19538)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console/JavaPage.java 2009-12-22 16:36:37 UTC (rev 19539)
@@ -57,6 +57,7 @@
public JavaPage(ConsoleConfiguration cfg, String criteriaCode, QueryInputModel model) {
super(cfg);
this.criteriaCode = criteriaCode;
+ setTabName(getQueryString().replace('\n', ' ').replace('\r', ' '));
this.model = model;
}
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console/QueryPage.java
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console/QueryPage.java 2009-12-22 16:30:28 UTC (rev 19538)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console/QueryPage.java 2009-12-22 16:36:37 UTC (rev 19539)
@@ -60,6 +60,11 @@
* @return
*/
public abstract String getQueryString();
+ /**
+ * @return
+ */
+ public abstract String getTabName();
+ public abstract void setTabName(String tabName);
/**
* @param b
*/
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/HibernateConsoleMessages.java
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/HibernateConsoleMessages.java 2009-12-22 16:30:28 UTC (rev 19538)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/HibernateConsoleMessages.java 2009-12-22 16:36:37 UTC (rev 19539)
@@ -161,6 +161,7 @@
public static String QueryPagePropertySource_query_string;
public static String QueryPagePropertySource_sec;
public static String QueryPagePropertySource_unknown;
+ public static String QueryPagePropertySource_tab_name;
//
public static String ConsoleConfigurationWizardPage_config_name_already_exist;
public static String ConsoleConfigurationWizardPage_config_page;
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/HibernateConsoleMessages.properties
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/HibernateConsoleMessages.properties 2009-12-22 16:30:28 UTC (rev 19538)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/HibernateConsoleMessages.properties 2009-12-22 16:36:37 UTC (rev 19539)
@@ -154,6 +154,7 @@
QueryPagePropertySource_query_run_time=Query run time
QueryPagePropertySource_query_size=Query size
QueryPagePropertySource_query_string=Query string
+QueryPagePropertySource_tab_name=Tab name
# {0}=count in seconds
QueryPagePropertySource_sec={0} sec
QueryPagePropertySource_unknown=(unknown)
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/views/QueryPageViewer.java
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/views/QueryPageViewer.java 2009-12-22 16:30:28 UTC (rev 19538)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/views/QueryPageViewer.java 2009-12-22 16:36:37 UTC (rev 19539)
@@ -22,6 +22,7 @@
package org.hibernate.eclipse.console.views;
import java.beans.PropertyChangeEvent;
+import java.beans.PropertyChangeListener;
import java.util.List;
import org.eclipse.jface.action.IMenuListener;
@@ -180,7 +181,7 @@
composite.setLayout(layout);
composite.setLayoutData(new GridData(GridData.FILL_BOTH) );
- this.tabItem.setText(this.queryPage.getQueryString().replace('\n', ' ').replace('\r', ' ') );
+ this.tabItem.setText(this.queryPage.getTabName());
this.tabItem.setToolTipText(this.queryPage.getQueryString());
/* different icon dependent on java/hql etc.
if (this.queryPage.getEntity() == null) {
@@ -204,6 +205,7 @@
initializePopUpMenu();
this.qrView.tabs.setSelection(index-1);
+ this.queryPage.addPropertyChangeListener(queryPagePropChangeListener);
}
@@ -270,6 +272,14 @@
return columnCount;
}
+ protected PropertyChangeListener queryPagePropChangeListener = new PropertyChangeListener() {
+ public void propertyChange(PropertyChangeEvent event) {
+ if ("tabName".equals(event.getPropertyName() )) { //$NON-NLS-1$
+ tabItem.setText(queryPage.getTabName());
+ }
+ }
+ };
+
public void propertyChange(PropertyChangeEvent event) {
if ("rows".equals(event.getPropertyName() ) ) { //$NON-NLS-1$
this.tableViewer.refresh();
@@ -289,6 +299,7 @@
public void dispose() {
//this.queryPage.removePropertyChangeListener(this);
+ this.queryPage.removePropertyChangeListener(queryPagePropChangeListener);
this.tabItem.dispose();
}
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/views/properties/QueryPagePropertySource.java
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/views/properties/QueryPagePropertySource.java 2009-12-22 16:30:28 UTC (rev 19538)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/views/properties/QueryPagePropertySource.java 2009-12-22 16:36:37 UTC (rev 19539)
@@ -43,8 +43,10 @@
private static final String QUERY_TIME = "QueryPage.time"; //$NON-NLS-1$
+ private static final String TAB_NAME = "QueryPage.tabName"; //$NON-NLS-1$
+
static {
- descriptors = new IPropertyDescriptor[4];
+ descriptors = new IPropertyDescriptor[5];
PropertyDescriptor descriptor;
// query string
@@ -68,11 +70,17 @@
//descriptor.setCategory(IResourcePropertyConstants.P_FILE_SYSTEM_CATEGORY);
descriptors[2] = descriptor;
- // time of query running
+ // time of query running
descriptor = new TextPropertyDescriptor(QUERY_TIME,
HibernateConsoleMessages.QueryPagePropertySource_query_run_time);
descriptor.setAlwaysIncompatible(false);
descriptors[3] = descriptor;
+
+ // time of query running
+ descriptor = new TextPropertyDescriptor(TAB_NAME,
+ HibernateConsoleMessages.QueryPagePropertySource_tab_name);
+ descriptor.setAlwaysIncompatible(false);
+ descriptors[4] = descriptor;
}
public QueryPagePropertySource (QueryPage page) {
@@ -112,7 +120,9 @@
}
return NLS.bind(HibernateConsoleMessages.QueryPagePropertySource_millisec, resultTime);
}
-
+ if(TAB_NAME.equals(id) ) {
+ return page.getTabName();
+ }
return null;
}
@@ -121,11 +131,14 @@
}
public void resetPropertyValue(Object id) {
-
+ if (TAB_NAME.equals(id)) {
+ page.setTabName(page.getQueryString().replace('\n', ' ').replace('\r', ' '));
+ }
}
public void setPropertyValue(Object id, Object value) {
-
-
+ if (TAB_NAME.equals(id)) {
+ page.setTabName(value == null ? "<null>" : value.toString()); //$NON-NLS-1$
+ }
}
}
\ No newline at end of file
16 years, 4 months
JBoss Tools SVN: r19538 - in trunk/seam/tests/org.jboss.tools.seam.ui.test: projects/TestSeamELContentAssist/.settings and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: vrubezhny
Date: 2009-12-22 11:30:28 -0500 (Tue, 22 Dec 2009)
New Revision: 19538
Removed:
trunk/seam/tests/org.jboss.tools.seam.ui.test/projects/TestComponentView/.settings/org.jboss.tools.jst.web.xml
trunk/seam/tests/org.jboss.tools.seam.ui.test/projects/TestSeamELContentAssist/.settings/org.jboss.tools.jst.web.xml
Modified:
trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/ca/SeamELContentAssistJbide1676Test.java
Log:
JBIDE-5399: Update CA-related JUnit tests due to satisfy changes made in JBIDE-4877 for CA
org.jboss.tools.seam.ui.test.ca.SeamELContentAssistJbide1676Test Test case is fixed
Deleted: trunk/seam/tests/org.jboss.tools.seam.ui.test/projects/TestComponentView/.settings/org.jboss.tools.jst.web.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.ui.test/projects/TestComponentView/.settings/org.jboss.tools.jst.web.xml 2009-12-22 16:28:27 UTC (rev 19537)
+++ trunk/seam/tests/org.jboss.tools.seam.ui.test/projects/TestComponentView/.settings/org.jboss.tools.jst.web.xml 2009-12-22 16:30:28 UTC (rev 19538)
@@ -1,39 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<file-systems application-name="TestComponentView" model-entity="FileSystems"
- VERSION="2.0.0" WORKSPACE_HOME="./WebContent/WEB-INF">
- <file-system model-entity="FileSystemFolder" location="%redhat.workspace%" NAME="WEB-INF"/>
- <file-system model-entity="FileSystemFolder" INFO="Content-Type=Web"
- location="%redhat.workspace%/.." NAME="WEB-ROOT"/>
- <file-system model-entity="FileSystemFolder"
- location="%redhat.workspace%/../../JavaSource" NAME="src"/>
- <file-system model-entity="FileSystemFolder" location="%redhat.workspace%/lib" NAME="lib"/>
- <file-system model-entity="FileSystemFolder"
- location="%redhat.workspace%/classes" NAME="classes"/>
- <file-system model-entity="FileSystemFolder"
- location="%redhat.workspace%/../../ant" NAME="build"/>
- <file-system model-entity="FileSystemJar" INFO="hidden=yes"
- location="%redhat.workspace%/lib/common-annotations.jar" NAME="lib-common-annotations.jar"/>
- <file-system model-entity="FileSystemJar" INFO="hidden=yes"
- location="%redhat.workspace%/lib/commons-beanutils.jar" NAME="lib-commons-beanutils.jar"/>
- <file-system model-entity="FileSystemJar" INFO="hidden=yes"
- location="%redhat.workspace%/lib/commons-collections.jar" NAME="lib-commons-collections.jar"/>
- <file-system model-entity="FileSystemJar" INFO="hidden=yes"
- location="%redhat.workspace%/lib/commons-digester.jar" NAME="lib-commons-digester.jar"/>
- <file-system model-entity="FileSystemJar" INFO="hidden=yes"
- location="%redhat.workspace%/lib/commons-logging.jar" NAME="lib-commons-logging.jar"/>
- <file-system model-entity="FileSystemJar" INFO="hidden=yes"
- location="%redhat.workspace%/lib/jsf-api.jar" NAME="lib-jsf-api.jar"/>
- <file-system model-entity="FileSystemJar" INFO="hidden=yes"
- location="%redhat.workspace%/lib/jsf-impl.jar" NAME="lib-jsf-impl.jar"/>
- <file-system model-entity="FileSystemJar" INFO="hidden=yes"
- location="%redhat.workspace%/lib/jstl.jar" NAME="lib-jstl.jar"/>
- <file-system model-entity="FileSystemJar" INFO="hidden=yes"
- location="%redhat.workspace%/lib/standard.jar" NAME="lib-standard.jar"/>
- <file-system model-entity="FileSystemFolder" location="%eclipse.project%" NAME="TestScanner"/>
- <file-system model-entity="FileSystemJar"
- location="%redhat.workspace%/lib/jboss-seam.jar" NAME="lib-jboss-seam.jar"/>
- <WEB model-entity="JstWeb" MODEL_PATH="/web.xml" SERVLET_VERSION="2.4">
- <MODULE model-entity="WebJSFModule" MODEL_PATH="/faces-config.xml"
- ROOT="WEB-ROOT" SRC="src" URI="/WEB-INF/faces-config.xml"/>
- </WEB>
-</file-systems>
Deleted: trunk/seam/tests/org.jboss.tools.seam.ui.test/projects/TestSeamELContentAssist/.settings/org.jboss.tools.jst.web.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.ui.test/projects/TestSeamELContentAssist/.settings/org.jboss.tools.jst.web.xml 2009-12-22 16:28:27 UTC (rev 19537)
+++ trunk/seam/tests/org.jboss.tools.seam.ui.test/projects/TestSeamELContentAssist/.settings/org.jboss.tools.jst.web.xml 2009-12-22 16:30:28 UTC (rev 19538)
@@ -1,303 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<file-systems VERSION="2.0.0" application-name="TestSeamELContentAssist"
- model-entity="FileSystems" workspace-home="./WebContent/WEB-INF">
- <file-system NAME="WEB-INF" location="%workspace.home%" model-entity="FileSystemFolder"/>
- <file-system NAME="WEB-ROOT" info="Content-Type=Web"
- location="%workspace.home%/.." model-entity="FileSystemFolder"/>
- <file-system NAME="lib" location="%workspace.home%/lib" model-entity="FileSystemFolder"/>
- <file-system NAME="classes" location="%workspace.home%/classes" model-entity="FileSystemFolder"/>
- <file-system NAME="lib-antlr-2.7.6.jar"
- location="%workspace.home%/lib/antlr-2.7.6.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-antlr-3.0ea8.jar"
- location="%workspace.home%/lib/antlr-3.0ea8.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-commons-beanutils-1.7.0.jar"
- location="%workspace.home%/lib/commons-beanutils-1.7.0.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-commons-collections-3.1.jar"
- location="%workspace.home%/lib/commons-collections-3.1.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-commons-digester-1.6.jar"
- location="%workspace.home%/lib/commons-digester-1.6.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-commons-jci-core-1.0-406301.jar"
- location="%workspace.home%/lib/commons-jci-core-1.0-406301.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-commons-jci-janino-2.4.3.jar"
- location="%workspace.home%/lib/commons-jci-janino-2.4.3.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-drools-compiler-3.0.5.jar"
- location="%workspace.home%/lib/drools-compiler-3.0.5.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-drools-core-3.0.5.jar"
- location="%workspace.home%/lib/drools-core-3.0.5.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-el-ri.jar"
- location="%workspace.home%/lib/el-ri.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-janino-2.4.3.jar"
- location="%workspace.home%/lib/janino-2.4.3.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-seam-debug.jar"
- location="%workspace.home%/lib/jboss-seam-debug.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-seam-ioc.jar"
- location="%workspace.home%/lib/jboss-seam-ioc.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-seam-mail.jar"
- location="%workspace.home%/lib/jboss-seam-mail.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-seam-pdf.jar"
- location="%workspace.home%/lib/jboss-seam-pdf.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-seam-remoting.jar"
- location="%workspace.home%/lib/jboss-seam-remoting.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-seam-ui.jar"
- location="%workspace.home%/lib/jboss-seam-ui.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-seam.jar"
- location="%workspace.home%/lib/jboss-seam.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jbpm-3.1.4.jar"
- location="%workspace.home%/lib/jbpm-3.1.4.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jsf-facelets.jar"
- location="%workspace.home%/lib/jsf-facelets.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-oscache-2.3.2.jar"
- location="%workspace.home%/lib/oscache-2.3.2.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-stringtemplate-2.3b6.jar"
- location="%workspace.home%/lib/stringtemplate-2.3b6.jar" model-entity="FileSystemJar"/>
- <file-system NAME="src" location="%workspace.home%/../../src/model" model-entity="FileSystemFolder"/>
- <file-system NAME="src-1" location="%workspace.home%/../../src/action" model-entity="FileSystemFolder"/>
- <file-system NAME="lib-dnsns.jar"
- location="E:\Java\jdk1.5.0_07\jre\lib\ext\dnsns.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-localedata.jar"
- location="E:\Java\jdk1.5.0_07\jre\lib\ext\localedata.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-sunjce_provider.jar"
- location="E:\Java\jdk1.5.0_07\jre\lib\ext\sunjce_provider.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-sunpkcs11.jar"
- location="E:\Java\jdk1.5.0_07\jre\lib\ext\sunpkcs11.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-activation.jar"
- location="E:\jboss-eap\jboss-as\client\activation.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-antlr.jar"
- location="E:\jboss-eap\jboss-as\client\antlr.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-avalon-framework.jar"
- location="E:\jboss-eap\jboss-as\client\avalon-framework.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-commons-codec.jar"
- location="E:\jboss-eap\jboss-as\client\commons-codec.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-commons-httpclient.jar"
- location="E:\jboss-eap\jboss-as\client\commons-httpclient.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-commons-logging.jar"
- location="E:\jboss-eap\jboss-as\client\commons-logging.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-concurrent.jar"
- location="E:\jboss-eap\jboss-as\client\concurrent.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-ejb3-persistence.jar"
- location="E:\jboss-eap\jboss-as\client\ejb3-persistence.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-getopt.jar"
- location="E:\jboss-eap\jboss-as\client\getopt.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-hibernate-annotations.jar"
- location="E:\jboss-eap\jboss-as\client\hibernate-annotations.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-hibernate-client.jar"
- location="E:\jboss-eap\jboss-as\client\hibernate-client.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jacorb.jar"
- location="E:\jboss-eap\jboss-as\client\jacorb.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-javassist.jar"
- location="E:\jboss-eap\jboss-as\client\javassist.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jaxb-api.jar"
- location="E:\jboss-eap\jboss-as\client\jaxb-api.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jaxb-impl.jar"
- location="E:\jboss-eap\jboss-as\client\jaxb-impl.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jaxb-xjc.jar"
- location="E:\jboss-eap\jboss-as\client\jaxb-xjc.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-annotations-ejb3.jar"
- location="E:\jboss-eap\jboss-as\client\jboss-annotations-ejb3.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-aop-jdk50-client.jar"
- location="E:\jboss-eap\jboss-as\client\jboss-aop-jdk50-client.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-aspect-jdk50-client.jar"
- location="E:\jboss-eap\jboss-as\client\jboss-aspect-jdk50-client.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-client.jar"
- location="E:\jboss-eap\jboss-as\client\jboss-client.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-common-client.jar"
- location="E:\jboss-eap\jboss-as\client\jboss-common-client.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-deployment.jar"
- location="E:\jboss-eap\jboss-as\client\jboss-deployment.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-ejb3-client.jar"
- location="E:\jboss-eap\jboss-as\client\jboss-ejb3-client.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-ejb3x.jar"
- location="E:\jboss-eap\jboss-as\client\jboss-ejb3x.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-iiop-client.jar"
- location="E:\jboss-eap\jboss-as\client\jboss-iiop-client.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-j2ee.jar"
- location="E:\jboss-eap\jboss-as\client\jboss-j2ee.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-jaxrpc.jar"
- location="E:\jboss-eap\jboss-as\client\jboss-jaxrpc.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-jaxws.jar"
- location="E:\jboss-eap\jboss-as\client\jboss-jaxws.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-jsr77-client.jar"
- location="E:\jboss-eap\jboss-as\client\jboss-jsr77-client.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-remoting.jar"
- location="E:\jboss-eap\jboss-as\client\jboss-remoting.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-saaj.jar"
- location="E:\jboss-eap\jboss-as\client\jboss-saaj.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-serialization.jar"
- location="E:\jboss-eap\jboss-as\client\jboss-serialization.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-srp-client.jar"
- location="E:\jboss-eap\jboss-as\client\jboss-srp-client.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-system-client.jar"
- location="E:\jboss-eap\jboss-as\client\jboss-system-client.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-transaction-client.jar"
- location="E:\jboss-eap\jboss-as\client\jboss-transaction-client.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-xml-binding.jar"
- location="E:\jboss-eap\jboss-as\client\jboss-xml-binding.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jbossall-client.jar"
- location="E:\jboss-eap\jboss-as\client\jbossall-client.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jbosscx-client.jar"
- location="E:\jboss-eap\jboss-as\client\jbosscx-client.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jbossha-client.jar"
- location="E:\jboss-eap\jboss-as\client\jbossha-client.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jbossjmx-ant.jar"
- location="E:\jboss-eap\jboss-as\client\jbossjmx-ant.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jbossmq-client.jar"
- location="E:\jboss-eap\jboss-as\client\jbossmq-client.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jbosssx-client.jar"
- location="E:\jboss-eap\jboss-as\client\jbosssx-client.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jbossws-client.jar"
- location="E:\jboss-eap\jboss-as\client\jbossws-client.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jbossws-wsconsume-impl.jar"
- location="E:\jboss-eap\jboss-as\client\jbossws-wsconsume-impl.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jmx-client.jar"
- location="E:\jboss-eap\jboss-as\client\jmx-client.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jmx-invoker-adaptor-client.jar"
- location="E:\jboss-eap\jboss-as\client\jmx-invoker-adaptor-client.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jnp-client.jar"
- location="E:\jboss-eap\jboss-as\client\jnp-client.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-log4j.jar"
- location="E:\jboss-eap\jboss-as\client\log4j.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-logkit.jar"
- location="E:\jboss-eap\jboss-as\client\logkit.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-mail.jar"
- location="E:\jboss-eap\jboss-as\client\mail.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-scout.jar"
- location="E:\jboss-eap\jboss-as\client\scout.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-servlet-api.jar"
- location="E:\jboss-eap\jboss-as\client\servlet-api.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-stax-api.jar"
- location="E:\jboss-eap\jboss-as\client\stax-api.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-trove.jar"
- location="E:\jboss-eap\jboss-as\client\trove.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-wsdl4j.jar"
- location="E:\jboss-eap\jboss-as\client\wsdl4j.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-wstx.jar"
- location="E:\jboss-eap\jboss-as\client\wstx.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-xmlsec.jar"
- location="E:\jboss-eap\jboss-as\client\xmlsec.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-common.jar"
- location="E:\jboss-eap\jboss-as\lib\jboss-common.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-jmx.jar"
- location="E:\jboss-eap\jboss-as\lib\jboss-jmx.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-system.jar"
- location="E:\jboss-eap\jboss-as\lib\jboss-system.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-log4j-boot.jar"
- location="E:\jboss-eap\jboss-as\lib\log4j-boot.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-autonumber-plugin.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\autonumber-plugin.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-bcel.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\bcel.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-bindingservice-plugin.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\bindingservice-plugin.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-bsf.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\bsf.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-bsh-deployer.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\bsh-deployer.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-bsh.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\bsh.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-cglib.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\cglib.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-commons-collections.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\commons-collections.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-dom4j.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\dom4j.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-el-api.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\el-api.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-hibernate-entitymanager.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\hibernate-entitymanager.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-hibernate3.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\hibernate3.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-hsqldb-plugin.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\hsqldb-plugin.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-hsqldb.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\hsqldb.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jaxen.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\jaxen.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-cache-jdk50.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\jboss-cache-jdk50.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-common-jdbc-wrapper.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\jboss-common-jdbc-wrapper.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-hibernate.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\jboss-hibernate.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-jca.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\jboss-jca.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-jsr77.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\jboss-jsr77.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-jsr88.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\jboss-jsr88.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-management.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\jboss-management.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-monitoring.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\jboss-monitoring.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-remoting-int.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\jboss-remoting-int.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-srp.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\jboss-srp.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-transaction.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\jboss-transaction.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-vfs.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\jboss-vfs.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\jboss.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jbossjta-integration.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\jbossjta-integration.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jbossjta.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\jbossjta.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jbossmq.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\jbossmq.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jbosssx.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\jbosssx.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jbossts-common.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\jbossts-common.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jbossws-integration.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\jbossws-integration.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jmx-adaptor-plugin.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\jmx-adaptor-plugin.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jnpserver.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\jnpserver.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-joesnmp.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\joesnmp.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jpl-pattern.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\jpl-pattern.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jpl-util.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\jpl-util.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jsp-api.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\jsp-api.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-log4j-snmp-appender.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\log4j-snmp-appender.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-mail-plugin.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\mail-plugin.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-properties-plugin.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\properties-plugin.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-quartz.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\quartz.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-scheduler-plugin-example.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\scheduler-plugin-example.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-scheduler-plugin.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\scheduler-plugin.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-xmlentitymgr.jar"
- location="E:\jboss-eap\jboss-as\server\default\lib\xmlentitymgr.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-faces.jar"
- location="E:\jboss-eap\jboss-as\server\default\deploy\jboss-web.deployer\jsf-libs\jboss-faces.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jsf-api.jar"
- location="E:\jboss-eap\jboss-as\server\default\deploy\jboss-web.deployer\jsf-libs\jsf-api.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jsf-impl.jar"
- location="E:\jboss-eap\jboss-as\server\default\deploy\jboss-web.deployer\jsf-libs\jsf-impl.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-aop-jdk50.jar"
- location="E:\jboss-eap\jboss-as\server\default\deploy\jboss-aop-jdk50.deployer\jboss-aop-jdk50.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-aspect-library-jdk50.jar"
- location="E:\jboss-eap\jboss-as\server\default\deploy\jboss-aop-jdk50.deployer\jboss-aspect-library-jdk50.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-jboss-ejb3.jar"
- location="E:\jboss-eap\jboss-as\server\default\deploy\ejb3.deployer\jboss-ejb3.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-ajax4jsf-1.1.1-SNAPSHOT.jar"
- location="E:\Java\eclipse-3.3\runtime-workspace\TestSeamELContentAssist\WebContent\WEB-INF\lib\ajax4jsf-1.1.1-SNAPSHOT.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-richfaces-3.0.1-SNAPSHOT.jar"
- location="E:\Java\eclipse-3.3\runtime-workspace\TestSeamELContentAssist\WebContent\WEB-INF\lib\richfaces-3.0.1-SNAPSHOT.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-ajax4jsf-1.1.1-snapshot.jar"
- location="%workspace.home%/lib/ajax4jsf-1.1.1-snapshot.jar" model-entity="FileSystemJar"/>
- <file-system NAME="lib-richfaces-3.0.1-snapshot.jar"
- location="%workspace.home%/lib/richfaces-3.0.1-snapshot.jar" model-entity="FileSystemJar"/>
- <web SERVLET_VERSION="2.4" model-entity="JstWeb" model-path="/web.xml">
- <module URI="/WEB-INF/faces-config.xml" model-entity="WebJSFModule"
- model-path="/faces-config.xml" root="WEB-ROOT" src="src"/>
- </web>
-</file-systems>
Modified: trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/ca/SeamELContentAssistJbide1676Test.java
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/ca/SeamELContentAssistJbide1676Test.java 2009-12-22 16:28:27 UTC (rev 19537)
+++ trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/ca/SeamELContentAssistJbide1676Test.java 2009-12-22 16:30:28 UTC (rev 19538)
@@ -39,7 +39,10 @@
private static final String[] VALID_SEAM_EL_PROPOSALS = new String[] {
"TestSeamELContentAssistEntityManagerFactory",
"fullPostList",
+ "a4j",
+ "a4jSkin",
"actor",
+ "ajaxContext",
"applicationContext",
"authenticator",
"businessProcess",
16 years, 4 months