JBoss Tools SVN: r25781 - trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2010-10-13 07:38:50 -0400 (Wed, 13 Oct 2010)
New Revision: 25781
Modified:
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/ChangeLog
Log:
[JBIDE-7326] implemented dialog, renamed action to disconnect action
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/ChangeLog
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/ChangeLog 2010-10-13 11:37:49 UTC (rev 25780)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/ChangeLog 2010-10-13 11:38:50 UTC (rev 25781)
@@ -1,3 +1,7 @@
+2010-10-13 André Dietisheim <adietish(a)redhat.com>
+
+ * src/org/jboss/tools/deltacloud/ui/views/DeltaCloudView.java: [JBIDE-7326] implemented dialog to disconnect multiple cloud connections.
+
2010-10-11 André Dietisheim <adietish(a)redhat.com>
* src/org/jboss/tools/deltacloud/ui/views/DeltaCloudView.java (getAdapter):
14 years, 3 months
JBoss Tools SVN: r25780 - trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2010-10-13 07:37:49 -0400 (Wed, 13 Oct 2010)
New Revision: 25780
Added:
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/DisconnectCloudsDialog.java
Modified:
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/CVMessages.properties
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/DeltaCloudView.java
Log:
[JBIDE-7326] implemented dialog, renamed action to disconnect action
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/CVMessages.properties
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/CVMessages.properties 2010-10-13 10:30:17 UTC (rev 25779)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/CVMessages.properties 2010-10-13 11:37:49 UTC (rev 25780)
@@ -58,7 +58,7 @@
DestroyingInstance.msg=Destroying Instance: {0}
ConnectingRSE.msg=Connecting instance as: {0}
ConfirmCloudDelete.title=Confirm Cloud Disconnect
-ConfirmCloudDelete.msg=Confirm disconnecting cloud: {0}
+ConfirmCloudDelete.msg=Please choose the clouds that shall be disconnected by checking them:
NAME=Name
ID=ID
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/DeltaCloudView.java
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/DeltaCloudView.java 2010-10-13 10:30:17 UTC (rev 25779)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/DeltaCloudView.java 2010-10-13 11:37:49 UTC (rev 25780)
@@ -11,7 +11,6 @@
package org.jboss.tools.deltacloud.ui.views;
import java.util.HashMap;
-import java.util.Iterator;
import java.util.List;
import java.util.Map;
@@ -21,7 +20,7 @@
import org.eclipse.jface.action.IToolBarManager;
import org.eclipse.jface.action.MenuManager;
import org.eclipse.jface.action.Separator;
-import org.eclipse.jface.dialogs.MessageDialog;
+import org.eclipse.jface.dialogs.Dialog;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.jface.viewers.DoubleClickEvent;
import org.eclipse.jface.viewers.IDoubleClickListener;
@@ -71,8 +70,6 @@
private static final String EDIT_CLOUD = "EditCloud.label"; //$NON-NLS-1$
private static final String REFRESH = "Refresh.label"; //$NON-NLS-1$
private static final String CREATE_INSTANCE = "CreateInstance.label"; //$NON-NLS-1$
- private static final String CONFIRM_CLOUD_DELETE_TITLE = "ConfirmCloudDelete.title"; //$NON-NLS-1$
- private static final String CONFIRM_CLOUD_DELETE_MSG = "ConfirmCloudDelete.msg"; //$NON-NLS-1$
private final static String START_LABEL = "Start.label"; //$NON-NLS-1$
private final static String STOP_LABEL = "Stop.label"; //$NON-NLS-1$
private final static String REBOOT_LABEL = "Reboot.label"; //$NON-NLS-1$
@@ -89,11 +86,10 @@
private final static String INSTANCE_FILTER = "InstanceFilter.label"; //$NON-NLS-1$
public static final String COLLAPSE_ALL = "CollapseAll.label"; //$NON-NLS-1$
-
private TreeViewer viewer;
private Action createConnection;
- private Action removeCloud;
+ private Action disconnectCloud;
private Action refreshAction;
private Action startAction;
private Action stopAction;
@@ -110,7 +106,6 @@
private CloudViewElement selectedElement;
-
/**
* The constructor.
*/
@@ -183,7 +178,7 @@
IStructuredSelection selection = (IStructuredSelection) viewer.getSelection();
selectedElement = (CloudViewElement) selection.getFirstElement();
editCloud.setEnabled(selectedElement != null);
- removeCloud.setEnabled(selectedElement != null);
+ disconnectCloud.setEnabled(selectedElement != null);
refreshAction.setEnabled(selectedElement != null);
imageFilterAction.setEnabled(selectedElement != null);
instanceFilterAction.setEnabled(selectedElement != null);
@@ -193,7 +188,7 @@
manager.removeAll();
manager.add(createConnection);
manager.add(editCloud);
- manager.add(removeCloud);
+ manager.add(disconnectCloud);
manager.add(refreshAction);
manager.add(imageFilterAction);
manager.add(instanceFilterAction);
@@ -213,7 +208,7 @@
}
manager.add(createConnection);
manager.add(editCloud);
- manager.add(removeCloud);
+ manager.add(disconnectCloud);
manager.add(imageFilterAction);
manager.add(instanceFilterAction);
// Other plug-ins can contribute there actions here
@@ -226,7 +221,7 @@
private void makeActions() {
createConnection = createNewConnectionAction();
- removeCloud = createRemoveAction();
+ disconnectCloud = createDisconnectAction();
createInstance = createInstanceAction();
editCloud = createEditCloudAction();
refreshAction = createRefreshAction();
@@ -261,7 +256,8 @@
public void run() {
NewCloudConnection wizard = new NewCloudConnection();
wizard.init(PlatformUI.getWorkbench(), new StructuredSelection());
- WizardDialog dialog = new WizardDialog(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell(), wizard);
+ WizardDialog dialog = new WizardDialog(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell(),
+ wizard);
dialog.create();
dialog.open();
}
@@ -271,7 +267,7 @@
createConnection.setImageDescriptor(SWTImagesFactory.DESC_CLOUD);
return createConnection;
}
-
+
private Action createCollapseAllAction() {
Action collapseAll = new Action() {
public void run() {
@@ -520,8 +516,17 @@
return editCloud;
}
- private Action createRemoveAction() {
- Action removeCloud = new RemoveAction();
+ private Action createDisconnectAction() {
+ Action removeCloud = new Action() {
+ public void run() {
+ DisconnectCloudsDialog dialog = new DisconnectCloudsDialog(
+ PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell()
+ , ((IStructuredSelection) viewer.getSelection()).toList());
+ if (Dialog.OK == dialog.open()) {
+ viewer.remove(dialog.getResult());
+ }
+ }
+ };
removeCloud.setText(CVMessages.getString(REMOVE_CLOUD));
removeCloud.setToolTipText(CVMessages.getString(REMOVE_CLOUD));
removeCloud.setImageDescriptor(PlatformUI.getWorkbench().getSharedImages().
@@ -588,44 +593,4 @@
return new CVPropertySheetPage();
return super.getAdapter(adapter);
}
-
- /**
- * A JFace action that removes the clouds that are selected in the tree
- * viewer.
- */
- private class RemoveAction extends Action {
-
- public void run() {
- IStructuredSelection selection = (IStructuredSelection) viewer.getSelection();
- for (Iterator<?> iterator = selection.toList().iterator(); iterator.hasNext();) {
- CloudViewElement element = (CloudViewElement) iterator.next();
- remove(element);
- }
- }
-
- private void remove(CloudViewElement element) {
- while (element != null && !(element instanceof CVCloudElement)) {
- element = (CloudViewElement) element.getParent();
- }
- if (element != null) {
- CVCloudElement cve = (CVCloudElement) element;
- Shell shell = PlatformUI.getWorkbench().getDisplay().getActiveShell();
- boolean confirmed = MessageDialog.openConfirm(shell,
- CVMessages.getString(CONFIRM_CLOUD_DELETE_TITLE),
- CVMessages.getFormattedString(CONFIRM_CLOUD_DELETE_MSG, cve.getName()));
- if (confirmed) {
- DeltaCloudManager.getDefault().removeCloud((DeltaCloud) element.getElement());
- CloudViewContentProvider p = (CloudViewContentProvider) viewer.getContentProvider();
- Object[] elements = p.getElements(getViewSite());
- int index = -1;
- for (int i = 0; i < elements.length; ++i) {
- if (elements[i] == cve)
- index = i;
- }
- if (index >= 0)
- ((TreeViewer) cve.getViewer()).remove(getViewSite(), index);
- }
- }
- }
- }
}
\ No newline at end of file
Added: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/DisconnectCloudsDialog.java
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/DisconnectCloudsDialog.java (rev 0)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/DisconnectCloudsDialog.java 2010-10-13 11:37:49 UTC (rev 25780)
@@ -0,0 +1,63 @@
+/*******************************************************************************
+ * Copyright (c) 2010 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.deltacloud.ui.views;
+
+import java.util.ArrayList;
+import java.util.List;
+
+import org.eclipse.jface.viewers.IStructuredContentProvider;
+import org.eclipse.jface.viewers.LabelProvider;
+import org.eclipse.jface.viewers.Viewer;
+import org.eclipse.swt.widgets.Shell;
+import org.eclipse.ui.dialogs.ListSelectionDialog;
+
+public class DisconnectCloudsDialog extends ListSelectionDialog {
+
+ private static final String CONFIRM_CLOUD_DELETE_TITLE = "ConfirmCloudDelete.title"; //$NON-NLS-1$
+ private static final String CONFIRM_CLOUD_DELETE_MSG = "ConfirmCloudDelete.msg"; //$NON-NLS-1$
+
+ private static class CloudViewElementsParentContentProvider implements IStructuredContentProvider {
+
+ @SuppressWarnings("unchecked")
+ @Override
+ public Object[] getElements(Object cloudViewElements) {
+ List<CloudViewElement> cloudViewElementParents = new ArrayList<CloudViewElement>();
+ for (Object cloudViewElement : (List<CloudViewElement>) cloudViewElements) {
+ if (cloudViewElement instanceof CloudViewElement && ((CloudViewElement) cloudViewElement).getParent() != null) {
+ cloudViewElementParents.add((CloudViewElement) cloudViewElement);
+ }
+ }
+ return cloudViewElementParents.toArray(new CloudViewElement[cloudViewElementParents.size()]);
+ }
+
+ @Override
+ public void dispose() {
+ }
+
+ @Override
+ public void inputChanged(Viewer viewer, Object oldInput, Object newInput) {
+ }
+ }
+
+ private static class CloudElementNameProvider extends LabelProvider {
+ public String getText(Object element) {
+ return ((CloudViewElement) element).getName();
+ }
+ };
+
+ public DisconnectCloudsDialog(Shell parentShell, List<?> cloudViewElements) {
+ super(parentShell
+ , cloudViewElements
+ , new CloudViewElementsParentContentProvider()
+ , new CloudElementNameProvider(), CVMessages.getString(CONFIRM_CLOUD_DELETE_MSG));
+ setTitle(CVMessages.getString(CONFIRM_CLOUD_DELETE_TITLE));
+ }
+}
Property changes on: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/DisconnectCloudsDialog.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
14 years, 3 months
JBoss Tools SVN: r25779 - trunk/common/plugins/org.jboss.tools.common.model.ui/src/org/jboss/tools/common/model/ui/views/palette.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2010-10-13 06:30:17 -0400 (Wed, 13 Oct 2010)
New Revision: 25779
Modified:
trunk/common/plugins/org.jboss.tools.common.model.ui/src/org/jboss/tools/common/model/ui/views/palette/PaletteAdapter.java
Log:
https://jira.jboss.org/browse/JBIDE-7322
Modified: trunk/common/plugins/org.jboss.tools.common.model.ui/src/org/jboss/tools/common/model/ui/views/palette/PaletteAdapter.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.model.ui/src/org/jboss/tools/common/model/ui/views/palette/PaletteAdapter.java 2010-10-13 09:49:07 UTC (rev 25778)
+++ trunk/common/plugins/org.jboss.tools.common.model.ui/src/org/jboss/tools/common/model/ui/views/palette/PaletteAdapter.java 2010-10-13 10:30:17 UTC (rev 25779)
@@ -76,6 +76,7 @@
public void initActionBars() {
IActionBars bars = viewPart.getActionBars();
if(bars != null) {
+ createPaletteTabs();
IMenuManager menuManager = bars.getMenuManager();
bars.getToolBarManager().add(new PaletteEditAction());
@@ -125,6 +126,7 @@
private void createPaletteTabs() {
IActionBars bars = viewPart.getActionBars();
+ if(bars == null) return;
IMenuManager menuManager = bars.getMenuManager();
IPaletteNode root = model.getRoot();
IPaletteNode[] nodes = root.getChildren();
@@ -264,8 +266,8 @@
public void dispose() {
dropManager.dispose();
descriptionManager.dispose();
- model.removeModelTreeListener(modelListener);
- viewPart.getActionBars().getToolBarManager().removeAll();
+ if(model != null) model.removeModelTreeListener(modelListener);
+ if(viewPart.getActionBars() != null) viewPart.getActionBars().getToolBarManager().removeAll();
try {
if (selectedTab != null) {
ModelUIPlugin.getWorkspace().getRoot().setPersistentProperty(persistentTabQualifiedName, selectedTab);
14 years, 3 months
JBoss Tools SVN: r25778 - trunk/vpe/plugins/org.jboss.tools.vpe.xulrunner/src/org/jboss/tools/vpe/xulrunner/editor.
by jbosstools-commits@lists.jboss.org
Author: mareshkau
Date: 2010-10-13 05:49:07 -0400 (Wed, 13 Oct 2010)
New Revision: 25778
Modified:
trunk/vpe/plugins/org.jboss.tools.vpe.xulrunner/src/org/jboss/tools/vpe/xulrunner/editor/Flasher.java
Log:
code refactoring,JBIDE-7295
Modified: trunk/vpe/plugins/org.jboss.tools.vpe.xulrunner/src/org/jboss/tools/vpe/xulrunner/editor/Flasher.java
===================================================================
--- trunk/vpe/plugins/org.jboss.tools.vpe.xulrunner/src/org/jboss/tools/vpe/xulrunner/editor/Flasher.java 2010-10-13 09:41:39 UTC (rev 25777)
+++ trunk/vpe/plugins/org.jboss.tools.vpe.xulrunner/src/org/jboss/tools/vpe/xulrunner/editor/Flasher.java 2010-10-13 09:49:07 UTC (rev 25778)
@@ -11,57 +11,64 @@
* Class responsible for drawing borders around visual elements.
*
* @author Yahor Radtsevich (yradtsevich): extracted the code from XulRunnerEditor
+ * @author mareshkau
*
*/
public class Flasher {
private inIFlasher iFlasher;
- private nsIDOMElement lastBorderedElement = null;
// added by Maksim Areshkau as element for which we
// have drowed border. When we draw new border,
// we should remove old one;
private static final String ELEMENT_BORDER_PATTERN = "border: 2px solid %s !important;";//$NON-NLS-1$
private static final String PREV_STYLE_ATTR_NAME = "oldstyle";//$NON-NLS-1$
-
+ private DrawOutlineInterface drawOutline;
public Flasher() {
nsIServiceManager serviceManager = Mozilla.getInstance()
.getServiceManager();
iFlasher = (inIFlasher) serviceManager.getServiceByContractID(
XPCOM.IN_FLASHER_CONTRACTID, inIFlasher.INIFLASHER_IID);
iFlasher.setThickness(2);
- }
-
- public void drawElementOutline(nsIDOMElement domElement) {
- // fix for JBIDE-3969
- // if(Platform.OS_MACOSX.equals(Platform.getOS())&&hasSelectInParenNodes(domElement.getParentNode()))
- // {
- // return;
- // }
if (Platform.OS_MACOSX.equals(Platform.getOS())) {
- // restore style for previously bordered element
- if (this.lastBorderedElement != null
- && this.lastBorderedElement.getAttribute(XulRunnerEditor.STYLE_ATTR) != null) {
- String style = this.lastBorderedElement
- .getAttribute(PREV_STYLE_ATTR_NAME);
- this.lastBorderedElement.removeAttribute(PREV_STYLE_ATTR_NAME);
- this.lastBorderedElement.setAttribute(XulRunnerEditor.STYLE_ATTR, style);
- }
+ drawOutline = new DrawOutlineInterface() {
+ private nsIDOMElement lastBorderedElement = null;
+ @Override
+ public void drawElementOutline(nsIDOMElement domElement) {
+ if (this.lastBorderedElement != null
+ && this.lastBorderedElement.getAttribute(XulRunnerEditor.STYLE_ATTR) != null) {
+ String style = this.lastBorderedElement
+ .getAttribute(PREV_STYLE_ATTR_NAME);
+ this.lastBorderedElement.removeAttribute(PREV_STYLE_ATTR_NAME);
+ this.lastBorderedElement.setAttribute(XulRunnerEditor.STYLE_ATTR, style);
+ }
- // save style for early bordered element
- String oldstyle = domElement.getAttribute(XulRunnerEditor.STYLE_ATTR);
- domElement.setAttribute(XulRunnerEditor.STYLE_ATTR,
- domElement.getAttribute(XulRunnerEditor.STYLE_ATTR) + ';'
- + String.format(ELEMENT_BORDER_PATTERN, iFlasher.getColor()));
+ // save style for early bordered element
+ String oldstyle = domElement.getAttribute(XulRunnerEditor.STYLE_ATTR);
+ domElement.setAttribute(XulRunnerEditor.STYLE_ATTR,
+ domElement.getAttribute(XulRunnerEditor.STYLE_ATTR) + ';'
+ + String.format(ELEMENT_BORDER_PATTERN, iFlasher.getColor()));
- this.lastBorderedElement = domElement;
- this.lastBorderedElement.setAttribute(PREV_STYLE_ATTR_NAME,
- oldstyle);
+ this.lastBorderedElement = domElement;
+ this.lastBorderedElement.setAttribute(PREV_STYLE_ATTR_NAME,
+ oldstyle);
+
+ }
+ };
} else {
- // under osx function drawElementOutline not works
- iFlasher.drawElementOutline(domElement);
+ drawOutline = new DrawOutlineInterface() {
+ @Override
+ public void drawElementOutline(nsIDOMElement domElement) {
+ iFlasher.drawElementOutline(domElement);
+ }
+ };
}
}
+
+ public void drawElementOutline(nsIDOMElement domElement) {
+ drawOutline.drawElementOutline(domElement);
+ }
+
public void scrollElementIntoView(nsIDOMElement element) {
iFlasher.scrollElementIntoView(element);
}
@@ -76,6 +83,14 @@
public void dispose() {
iFlasher = null;
- lastBorderedElement = null;
}
}
+/**
+ * Interface for draw outline functionality
+ * @author mareshkau
+ *
+ */
+interface DrawOutlineInterface{
+ public void drawElementOutline(nsIDOMElement domElement);
+};
+
14 years, 3 months
JBoss Tools SVN: r25777 - trunk/bpel/plugins/org.eclipse.bpel.ui/src/org/eclipse/bpel/ui/dialogs.
by jbosstools-commits@lists.jboss.org
Author: bbrodt
Date: 2010-10-13 05:41:39 -0400 (Wed, 13 Oct 2010)
New Revision: 25777
Modified:
trunk/bpel/plugins/org.eclipse.bpel.ui/src/org/eclipse/bpel/ui/dialogs/EditPropertyAliasDialog.java
Log:
https://jira.jboss.org/browse/JBIDE-7107
remove dependency on Java 6 String#isEmpty()
Modified: trunk/bpel/plugins/org.eclipse.bpel.ui/src/org/eclipse/bpel/ui/dialogs/EditPropertyAliasDialog.java
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.ui/src/org/eclipse/bpel/ui/dialogs/EditPropertyAliasDialog.java 2010-10-13 08:20:52 UTC (rev 25776)
+++ trunk/bpel/plugins/org.eclipse.bpel.ui/src/org/eclipse/bpel/ui/dialogs/EditPropertyAliasDialog.java 2010-10-13 09:41:39 UTC (rev 25777)
@@ -544,20 +544,20 @@
alias.setPropertyName(property);
if (typeElementOrMessage == BID_USE_TYPE) {
alias.setType(xsdTypeDefinition);
- if (xsdTypeQuery!=null && (xsdTypeQuery.getValue()==null || xsdTypeQuery.getValue().isEmpty()) )
+ if (xsdTypeQuery!=null && (xsdTypeQuery.getValue()==null || xsdTypeQuery.getValue().trim().equals("")) )
xsdTypeQuery = null;
alias.setQuery(xsdTypeQuery);
}
else if (typeElementOrMessage == BID_USE_ELEMENT) {
alias.setXSDElement(xsdElementDeclaration);
- if (xsdElementQuery!=null && (xsdElementQuery.getValue()==null || xsdElementQuery.getValue().isEmpty()) )
+ if (xsdElementQuery!=null && (xsdElementQuery.getValue()==null || xsdElementQuery.getValue().trim().equals("")) )
xsdElementQuery = null;
alias.setQuery(xsdElementQuery);
}
else {
alias.setMessageType(message);
alias.setPart(messagePart);
- if (messageQuery!=null && (messageQuery.getValue()==null || messageQuery.getValue().isEmpty()) )
+ if (messageQuery!=null && (messageQuery.getValue()==null || messageQuery.getValue().trim().equals("")) )
messageQuery = null;
alias.setQuery(messageQuery);
}
14 years, 3 months
JBoss Tools SVN: r25776 - workspace/snjeza/jbide5036.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2010-10-13 04:20:52 -0400 (Wed, 13 Oct 2010)
New Revision: 25776
Added:
workspace/snjeza/jbide5036/.project
workspace/snjeza/jbide5036/jbide5036a.zip
workspace/snjeza/jbide5036/jbide5036b.zip
Log:
JBIDE-5036 JDT Internal Error connected with JBossAS while java method renaming
Added: workspace/snjeza/jbide5036/.project
===================================================================
--- workspace/snjeza/jbide5036/.project (rev 0)
+++ workspace/snjeza/jbide5036/.project 2010-10-13 08:20:52 UTC (rev 25776)
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>jbide5036</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ </buildSpec>
+ <natures>
+ </natures>
+</projectDescription>
Added: workspace/snjeza/jbide5036/jbide5036a.zip
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/jbide5036/jbide5036a.zip
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: workspace/snjeza/jbide5036/jbide5036b.zip
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/jbide5036/jbide5036b.zip
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
14 years, 3 months
JBoss Tools SVN: r25775 - trunk/vpe/tests/org.jboss.tools.vpe.ui.test/META-INF.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2010-10-13 04:17:29 -0400 (Wed, 13 Oct 2010)
New Revision: 25775
Modified:
trunk/vpe/tests/org.jboss.tools.vpe.ui.test/META-INF/MANIFEST.MF
Log:
https://jira.jboss.org/browse/JBIDE-7322
Modified: trunk/vpe/tests/org.jboss.tools.vpe.ui.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.test/META-INF/MANIFEST.MF 2010-10-13 08:07:00 UTC (rev 25774)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.test/META-INF/MANIFEST.MF 2010-10-13 08:17:29 UTC (rev 25775)
@@ -17,6 +17,7 @@
org.eclipse.jface.text,
org.jboss.tools.common.model.ui,
org.jboss.tools.tests;visibility:=reexport,
+ org.jboss.tools.vpe.ui.palette;visibility:=reexport,
org.jboss.tools.vpe.resref,
javax.servlet;bundle-version="2.5.0",
org.eclipse.wst.xml.xpath.core
14 years, 3 months
JBoss Tools SVN: r25774 - workspace/snjeza.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2010-10-13 04:07:00 -0400 (Wed, 13 Oct 2010)
New Revision: 25774
Added:
workspace/snjeza/jbide5036/
Log:
Initial import.
14 years, 3 months
JBoss Tools SVN: r25773 - /.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2010-10-13 03:59:43 -0400 (Wed, 13 Oct 2010)
New Revision: 25773
Removed:
jbide5036/
Log:
14 years, 3 months
JBoss Tools SVN: r25772 - jbide5036.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2010-10-13 03:35:26 -0400 (Wed, 13 Oct 2010)
New Revision: 25772
Added:
jbide5036/.project
jbide5036/jbide5036a.zip
jbide5036/jbide5036b.zip
Log:
Added: jbide5036/.project
===================================================================
--- jbide5036/.project (rev 0)
+++ jbide5036/.project 2010-10-13 07:35:26 UTC (rev 25772)
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>jbide5036</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ </buildSpec>
+ <natures>
+ </natures>
+</projectDescription>
Added: jbide5036/jbide5036a.zip
===================================================================
(Binary files differ)
Property changes on: jbide5036/jbide5036a.zip
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: jbide5036/jbide5036b.zip
===================================================================
(Binary files differ)
Property changes on: jbide5036/jbide5036b.zip
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
14 years, 3 months