JBoss Tools SVN: r14683 - trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard.
by jbosstools-commits@lists.jboss.org
Author: dazarov
Date: 2009-04-10 10:06:26 -0400 (Fri, 10 Apr 2009)
New Revision: 14683
Modified:
trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/RenameComponentWizard.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-1077
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/RenameComponentWizard.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/RenameComponentWizard.java 2009-04-10 14:06:21 UTC (rev 14682)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/RenameComponentWizard.java 2009-04-10 14:06:26 UTC (rev 14683)
@@ -22,8 +22,6 @@
import org.eclipse.ltk.ui.refactoring.UserInputWizardPage;
import org.eclipse.osgi.util.NLS;
import org.eclipse.swt.SWT;
-import org.eclipse.swt.events.ModifyEvent;
-import org.eclipse.swt.events.ModifyListener;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Composite;
@@ -94,7 +92,6 @@
setPageComplete(false);
return;
}
- setErrorMessage("");
RefactoringStatus status= new RefactoringStatus();
setPageComplete(status);
}
15 years, 8 months
JBoss Tools SVN: r14682 - trunk/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/src/org/hibernate/eclipse/jdt/ui/test.
by jbosstools-commits@lists.jboss.org
Author: vyemialyanchyk
Date: 2009-04-10 10:06:21 -0400 (Fri, 10 Apr 2009)
New Revision: 14682
Modified:
trunk/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/src/org/hibernate/eclipse/jdt/ui/test/HibernateErrorsTest2.java
Log:
JBIDE-4139 - cleanup exception message
Modified: trunk/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/src/org/hibernate/eclipse/jdt/ui/test/HibernateErrorsTest2.java
===================================================================
--- trunk/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/src/org/hibernate/eclipse/jdt/ui/test/HibernateErrorsTest2.java 2009-04-10 13:46:29 UTC (rev 14681)
+++ trunk/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/src/org/hibernate/eclipse/jdt/ui/test/HibernateErrorsTest2.java 2009-04-10 14:06:21 UTC (rev 14682)
@@ -205,10 +205,7 @@
if (file.exists() && file.isDirectory()) {
String[] files = file.list();
buffer.append("List="); //$NON-NLS-1$
- buffer.append(files);
- buffer.append("-"); //$NON-NLS-1$
- for (int i = 0; i < files.length; i++)
- buffer.append(files[i]);
+ buffer.append(files.toString());
}
return buffer.toString();
}
15 years, 8 months
JBoss Tools SVN: r14681 - trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard.
by jbosstools-commits@lists.jboss.org
Author: dazarov
Date: 2009-04-10 09:46:29 -0400 (Fri, 10 Apr 2009)
New Revision: 14681
Modified:
trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/RenameComponentWizard.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-1077 added seam component name validation
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/RenameComponentWizard.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/RenameComponentWizard.java 2009-04-10 13:03:37 UTC (rev 14680)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/RenameComponentWizard.java 2009-04-10 13:46:29 UTC (rev 14681)
@@ -10,17 +10,29 @@
******************************************************************************/
package org.jboss.tools.seam.ui.wizard;
+import java.beans.PropertyChangeEvent;
+import java.beans.PropertyChangeListener;
+import java.util.Map;
+
+import org.eclipse.core.runtime.IStatus;
import org.eclipse.jface.wizard.IWizardPage;
import org.eclipse.ltk.core.refactoring.Refactoring;
+import org.eclipse.ltk.core.refactoring.RefactoringStatus;
import org.eclipse.ltk.ui.refactoring.RefactoringWizard;
import org.eclipse.ltk.ui.refactoring.UserInputWizardPage;
+import org.eclipse.osgi.util.NLS;
import org.eclipse.swt.SWT;
+import org.eclipse.swt.events.ModifyEvent;
+import org.eclipse.swt.events.ModifyListener;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Composite;
import org.jboss.tools.seam.core.ISeamComponent;
import org.jboss.tools.seam.internal.core.refactoring.RenameComponentProcessor;
import org.jboss.tools.seam.ui.SeamUIMessages;
+import org.jboss.tools.seam.ui.internal.project.facet.IValidator;
+import org.jboss.tools.seam.ui.internal.project.facet.ValidatorFactory;
+import org.jboss.tools.seam.ui.widget.editor.CompositeEditor;
import org.jboss.tools.seam.ui.widget.editor.IFieldEditor;
import org.jboss.tools.seam.ui.widget.editor.IFieldEditorFactory;
@@ -66,14 +78,32 @@
String defaultName = component.getName();
editor = IFieldEditorFactory.INSTANCE.createTextEditor(componentName, SeamUIMessages.SEAM_WIZARD_FACTORY_SEAM_COMPONENT_NAME, defaultName);
editor.doFillIntoGrid(container);
-
+
+ ((CompositeEditor)editor).addPropertyChangeListener(new PropertyChangeListener(){
+ public void propertyChange(PropertyChangeEvent evt){
+ validatePage();
+ }
+ });
setControl(container);
}
+ protected final void validatePage() {
+ Map<String, IStatus> errors = ValidatorFactory.SEAM_COMPONENT_NAME_VALIDATOR.validate(editor.getValueAsString(), null);
+ if(errors.size()>0) {
+ setErrorMessage(NLS.bind(errors.get(IValidator.DEFAULT_ERROR).getMessage(),SeamUIMessages.SEAM_BASE_WIZARD_PAGE_SEAM_COMPONENTS));
+ setPageComplete(false);
+ return;
+ }
+ setErrorMessage("");
+ RefactoringStatus status= new RefactoringStatus();
+ setPageComplete(status);
+ }
+
/* (non-Javadoc)
* @see org.eclipse.ltk.ui.refactoring.UserInputWizardPage#performFinish()
*/
protected boolean performFinish() {
+
initializeRefactoring();
return super.performFinish();
}
15 years, 8 months
JBoss Tools SVN: r14680 - trunk/hibernatetools/plugins/org.hibernate.eclipse.mapper/src/org/hibernate/eclipse/mapper/editors.
by jbosstools-commits@lists.jboss.org
Author: vyemialyanchyk
Date: 2009-04-10 09:03:37 -0400 (Fri, 10 Apr 2009)
New Revision: 14680
Modified:
trunk/hibernatetools/plugins/org.hibernate.eclipse.mapper/src/org/hibernate/eclipse/mapper/editors/CFGXMLStructuredTextViewerConfiguration.java
Log:
JBIDE-4139 - fix potential string compare problems & change for new interface instead of old one
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse.mapper/src/org/hibernate/eclipse/mapper/editors/CFGXMLStructuredTextViewerConfiguration.java
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse.mapper/src/org/hibernate/eclipse/mapper/editors/CFGXMLStructuredTextViewerConfiguration.java 2009-04-10 12:52:20 UTC (rev 14679)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse.mapper/src/org/hibernate/eclipse/mapper/editors/CFGXMLStructuredTextViewerConfiguration.java 2009-04-10 13:03:37 UTC (rev 14680)
@@ -34,10 +34,10 @@
import org.eclipse.jface.text.contentassist.IContentAssistProcessor;
import org.eclipse.jface.text.source.ISourceViewer;
import org.eclipse.wst.sse.core.internal.provisional.IStructuredModel;
-import org.eclipse.wst.sse.core.internal.provisional.StructuredModelManager;
+import org.eclipse.wst.sse.core.StructuredModelManager;
import org.eclipse.wst.sse.core.internal.provisional.text.IStructuredDocumentRegion;
-import org.eclipse.wst.sse.core.internal.provisional.text.IStructuredPartitionTypes;
-import org.eclipse.wst.xml.core.internal.provisional.text.IXMLPartitions;
+import org.eclipse.wst.sse.core.text.IStructuredPartitions;
+import org.eclipse.wst.xml.core.text.IXMLPartitions;
import org.eclipse.wst.xml.ui.StructuredTextViewerConfigurationXML;
import org.eclipse.wst.xml.ui.internal.contentassist.ContentAssistRequest;
import org.eclipse.wst.xml.ui.internal.contentassist.NoRegionContentAssistProcessor;
@@ -140,10 +140,10 @@
protected IContentAssistProcessor[] getContentAssistProcessors(ISourceViewer sourceViewer, String partitionType) {
IContentAssistProcessor[] processors = null;
- if ((partitionType == IStructuredPartitionTypes.DEFAULT_PARTITION) || (partitionType == IXMLPartitions.XML_DEFAULT)) {
+ if ((IStructuredPartitions.DEFAULT_PARTITION.equals(partitionType)) || (IXMLPartitions.XML_DEFAULT.equals(partitionType))) {
processors = new IContentAssistProcessor[]{new CFGXMLContentAssistProcessor()}; // TODO: return cached one ?
}
- else if (partitionType == IStructuredPartitionTypes.UNKNOWN_PARTITION) {
+ else if (IStructuredPartitions.UNKNOWN_PARTITION.equals(partitionType)) {
processors = new IContentAssistProcessor[]{new NoRegionContentAssistProcessor()};
}
15 years, 8 months
JBoss Tools SVN: r14679 - in trunk/hibernatetools: tests/org.hibernate.eclipse.console.test/src/org/hibernate/eclipse/console and 2 other directories.
by jbosstools-commits@lists.jboss.org
Author: vyemialyanchyk
Date: 2009-04-10 08:52:20 -0400 (Fri, 10 Apr 2009)
New Revision: 14679
Added:
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/src/org/hibernate/eclipse/console/views/
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/src/org/hibernate/eclipse/console/views/test/
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/src/org/hibernate/eclipse/console/views/test/QueryPageViewerTest.java
Modified:
trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/views/QueryPageViewer.java
Log:
JBIDE-4139
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-04-10 12:40:07 UTC (rev 14678)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/views/QueryPageViewer.java 2009-04-10 12:52:20 UTC (rev 14679)
@@ -59,7 +59,7 @@
*/
public class QueryPageViewer {
- class LabelProviderImpl implements ITableLabelProvider {
+ static public class LabelProviderImpl implements ITableLabelProvider {
public Image getColumnImage(Object element, int columnIndex) {
return null;
}
@@ -69,7 +69,9 @@
if (element instanceof QueryPage) {
value = ( (QueryPage) element).getList().get(columnIndex);
}
-
+ if (value == null) {
+ return ""; //$NON-NLS-1$
+ }
if (value.getClass().isArray() ) {
Object[] arr = (Object[]) value;
if (columnIndex > arr.length - 1) {
@@ -80,7 +82,7 @@
if(columnIndex!=0) {
return "?"; //$NON-NLS-1$
} else {
- return value == null ? "" : value.toString(); //$NON-NLS-1$
+ return value.toString();
}
}
}
@@ -110,7 +112,7 @@
};
// should map to our table model instead
- class ContentProviderImpl implements IStructuredContentProvider {
+ static class ContentProviderImpl implements IStructuredContentProvider {
public Object[] getElements(Object inputElement) {
if (inputElement instanceof QueryPage) {
QueryPage qp = ( (QueryPage) inputElement);
Added: trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/src/org/hibernate/eclipse/console/views/test/QueryPageViewerTest.java
===================================================================
--- trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/src/org/hibernate/eclipse/console/views/test/QueryPageViewerTest.java (rev 0)
+++ trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/src/org/hibernate/eclipse/console/views/test/QueryPageViewerTest.java 2009-04-10 12:52:20 UTC (rev 14679)
@@ -0,0 +1,30 @@
+/*******************************************************************************
+ * Copyright (c) 2007-2009 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
+ *
+ * Contributor:
+ * Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+package org.hibernate.eclipse.console.views.test;
+
+import org.hibernate.eclipse.console.views.QueryPageViewer;
+import junit.framework.TestCase;
+
+public class QueryPageViewerTest extends TestCase {
+
+ public void testLabelProviderImpl() {
+
+ QueryPageViewer.LabelProviderImpl labelProvider =
+ new QueryPageViewer.LabelProviderImpl();
+ String res = labelProvider.getColumnText(null, 0);
+ assertTrue("".equals(res)); //$NON-NLS-1$
+ String[] arr = new String[1];
+ final String testStr = "testVal"; //$NON-NLS-1$
+ arr[0] = testStr;
+ res = labelProvider.getColumnText(arr, 0);
+ assertTrue(testStr.equals(res));
+ }
+}
15 years, 8 months
JBoss Tools SVN: r14678 - trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/model/loaders/impl.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2009-04-10 08:40:07 -0400 (Fri, 10 Apr 2009)
New Revision: 14678
Modified:
trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/model/loaders/impl/PropertiesLoader.java
Log:
JBIDE-3833
Modified: trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/model/loaders/impl/PropertiesLoader.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/model/loaders/impl/PropertiesLoader.java 2009-04-10 12:39:17 UTC (rev 14677)
+++ trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/model/loaders/impl/PropertiesLoader.java 2009-04-10 12:40:07 UTC (rev 14678)
@@ -141,6 +141,10 @@
if(state == 1 && sb.length() > 0) {
object.set("conclusion", sb.toString());
}
+ if(state == 2) {
+ c.setAttributeValue("dirtyvalue", sb.toString());
+ c.setAttributeValue("line-end", lineEnd.toString());
+ }
}
public boolean update(XModelObject object) throws XModelException {
15 years, 8 months
JBoss Tools SVN: r14677 - trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard.
by jbosstools-commits@lists.jboss.org
Author: akazakov
Date: 2009-04-10 08:39:17 -0400 (Fri, 10 Apr 2009)
New Revision: 14677
Modified:
trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/SeamProjectWizard.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-4159 Fixed NPE
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/SeamProjectWizard.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/SeamProjectWizard.java 2009-04-10 12:12:32 UTC (rev 14676)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/SeamProjectWizard.java 2009-04-10 12:39:17 UTC (rev 14677)
@@ -144,7 +144,9 @@
getFacetedProjectWorkingCopy().addListener(new IFacetedProjectListener() {
public void handleEvent(IFacetedProjectEvent event) {
IPreset preset = getFacetedProjectWorkingCopy().getSelectedPreset();
- setSeamConfigTemplate(templates.get(preset.getId()));
+ if(preset!=null) {
+ setSeamConfigTemplate(templates.get(preset.getId()));
+ }
}
}, IFacetedProjectEvent.Type.SELECTED_PRESET_CHANGED);
getFacetedProjectWorkingCopy().addListener(new IFacetedProjectListener() {
15 years, 8 months
JBoss Tools SVN: r14676 - in branches/jbosstools-3.0.x/seam/tests/org.jboss.tools.seam.core.test: src/org/jboss/tools/seam/core/test and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2009-04-10 08:12:32 -0400 (Fri, 10 Apr 2009)
New Revision: 14676
Added:
branches/jbosstools-3.0.x/seam/tests/org.jboss.tools.seam.core.test/projects/TestScanner/JavaSource/demo/CustomAnnotation.java
Modified:
branches/jbosstools-3.0.x/seam/tests/org.jboss.tools.seam.core.test/src/org/jboss/tools/seam/core/test/ScannerTest.java
Log:
JBIDE-4144
Added: branches/jbosstools-3.0.x/seam/tests/org.jboss.tools.seam.core.test/projects/TestScanner/JavaSource/demo/CustomAnnotation.java
===================================================================
--- branches/jbosstools-3.0.x/seam/tests/org.jboss.tools.seam.core.test/projects/TestScanner/JavaSource/demo/CustomAnnotation.java (rev 0)
+++ branches/jbosstools-3.0.x/seam/tests/org.jboss.tools.seam.core.test/projects/TestScanner/JavaSource/demo/CustomAnnotation.java 2009-04-10 12:12:32 UTC (rev 14676)
@@ -0,0 +1,31 @@
+/*******************************************************************************
+ * 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 demo;
+
+import org.jboss.seam.annotations.*;
+
+@Name("myCustomAnnotation")
+public @interface CustomAnnotation {
+
+ @Name("inner_JBIDE_4144")
+ public static class Inner {
+ private String innerName;
+
+ public String getInnerName() {
+ return innerName;
+ }
+
+ public void setInnerName(String s) {
+ innerName = s;
+ }
+ }
+
+}
\ No newline at end of file
Modified: branches/jbosstools-3.0.x/seam/tests/org.jboss.tools.seam.core.test/src/org/jboss/tools/seam/core/test/ScannerTest.java
===================================================================
--- branches/jbosstools-3.0.x/seam/tests/org.jboss.tools.seam.core.test/src/org/jboss/tools/seam/core/test/ScannerTest.java 2009-04-10 12:03:29 UTC (rev 14675)
+++ branches/jbosstools-3.0.x/seam/tests/org.jboss.tools.seam.core.test/src/org/jboss/tools/seam/core/test/ScannerTest.java 2009-04-10 12:12:32 UTC (rev 14676)
@@ -465,6 +465,12 @@
assertTrue("Component inner_JBIDE_1374 declared in inner static class is not found.", c != null);
}
+ public void testInnerClassInAnnotationType_JBIDE_4144() {
+ ISeamProject seamProject = getSeamProject();
+ ISeamComponent c = seamProject.getComponent("inner_JBIDE_4144");
+ assertTrue("Component inner_JBIDE_4144 declared in inner static class inside an annotation type is not found.", c != null);
+ }
+
public void testInstallWithoutPrecedence_JBIDE_2052() {
ISeamProject seamProject = getSeamProject();
ISeamComponent c = seamProject.getComponent("installWithoutPrecedence_JBIDE_2052");
15 years, 8 months
JBoss Tools SVN: r14675 - trunk/ws/docs/reference/en/images.
by jbosstools-commits@lists.jboss.org
Author: abogachuk
Date: 2009-04-10 08:03:29 -0400 (Fri, 10 Apr 2009)
New Revision: 14675
Removed:
trunk/ws/docs/reference/en/images/Jbossws_preference.png
trunk/ws/docs/reference/en/images/Jbossws_preference_new.png
trunk/ws/docs/reference/en/images/jbossws_container1.png
trunk/ws/docs/reference/en/images/jbossws_container2.png
trunk/ws/docs/reference/en/images/jbossws_server_runtime.png
Log:
https://jira.jboss.org/jira/browse/JBDS-398 - images relocated
Deleted: trunk/ws/docs/reference/en/images/Jbossws_preference.png
===================================================================
(Binary files differ)
Deleted: trunk/ws/docs/reference/en/images/Jbossws_preference_new.png
===================================================================
(Binary files differ)
Deleted: trunk/ws/docs/reference/en/images/jbossws_container1.png
===================================================================
(Binary files differ)
Deleted: trunk/ws/docs/reference/en/images/jbossws_container2.png
===================================================================
(Binary files differ)
Deleted: trunk/ws/docs/reference/en/images/jbossws_server_runtime.png
===================================================================
(Binary files differ)
15 years, 8 months
JBoss Tools SVN: r14674 - trunk/ws/docs/reference/en/images/preference.
by jbosstools-commits@lists.jboss.org
Author: abogachuk
Date: 2009-04-10 08:02:45 -0400 (Fri, 10 Apr 2009)
New Revision: 14674
Added:
trunk/ws/docs/reference/en/images/preference/Jbossws_preference.png
trunk/ws/docs/reference/en/images/preference/Jbossws_preference_new.png
trunk/ws/docs/reference/en/images/preference/jbossws_container1.png
trunk/ws/docs/reference/en/images/preference/jbossws_container2.png
trunk/ws/docs/reference/en/images/preference/jbossws_server_runtime.png
Log:
https://jira.jboss.org/jira/browse/JBDS-398 - images from chapter 4 moved to the corresponding folder
Added: trunk/ws/docs/reference/en/images/preference/Jbossws_preference.png
===================================================================
(Binary files differ)
Property changes on: trunk/ws/docs/reference/en/images/preference/Jbossws_preference.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/ws/docs/reference/en/images/preference/Jbossws_preference_new.png
===================================================================
(Binary files differ)
Property changes on: trunk/ws/docs/reference/en/images/preference/Jbossws_preference_new.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/ws/docs/reference/en/images/preference/jbossws_container1.png
===================================================================
(Binary files differ)
Property changes on: trunk/ws/docs/reference/en/images/preference/jbossws_container1.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/ws/docs/reference/en/images/preference/jbossws_container2.png
===================================================================
(Binary files differ)
Property changes on: trunk/ws/docs/reference/en/images/preference/jbossws_container2.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/ws/docs/reference/en/images/preference/jbossws_server_runtime.png
===================================================================
(Binary files differ)
Property changes on: trunk/ws/docs/reference/en/images/preference/jbossws_server_runtime.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
15 years, 8 months