JBoss Tools SVN: r2129 - trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/util/internal.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2007-06-15 12:56:54 -0400 (Fri, 15 Jun 2007)
New Revision: 2129
Modified:
trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/util/internal/ModelTruezipBridge.java
Log:
complies with API change in IArchiveFileSet
Modified: trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/util/internal/ModelTruezipBridge.java
===================================================================
--- trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/util/internal/ModelTruezipBridge.java 2007-06-15 16:55:35 UTC (rev 2128)
+++ trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/util/internal/ModelTruezipBridge.java 2007-06-15 16:56:54 UTC (rev 2129)
@@ -236,7 +236,7 @@
boolean exploded = ((IArchive)node).isExploded();
ArchiveDetector detector = exploded ? ArchiveDetector.NULL : ArchiveDetector.DEFAULT;
if( parentFile == null )
- return new File(node2.getDestinationPath().append(node2.getName()).toOSString(), detector);
+ return new File(node2.getGlobalDestinationPath().append(node2.getName()).toOSString(), detector);
return new File(parentFile, node2.getName(), detector);
}
if( node.getNodeType() == IArchiveNode.TYPE_ARCHIVE_FOLDER ) {
17 years, 6 months
JBoss Tools SVN: r2128 - trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/model/internal.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2007-06-15 12:55:35 -0400 (Fri, 15 Jun 2007)
New Revision: 2128
Modified:
trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/model/internal/ArchiveImpl.java
Log:
complying with API change in interface
Modified: trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/model/internal/ArchiveImpl.java
===================================================================
--- trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/model/internal/ArchiveImpl.java 2007-06-15 16:55:21 UTC (rev 2127)
+++ trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/model/internal/ArchiveImpl.java 2007-06-15 16:55:35 UTC (rev 2128)
@@ -67,7 +67,7 @@
/*
* @see IArchive#getDestinationPath()
*/
- public IPath getDestinationPath () {
+ public IPath getGlobalDestinationPath () {
if (packageDelegate.getToDir() == null || packageDelegate.getToDir().equals("."))
return getProjectPath() == null ? null : getProjectPath();
@@ -77,11 +77,15 @@
return new Path(packageDelegate.getToDir());
}
+ public IPath getDestinationPath() {
+ return packageDelegate.getToDir() == null ? null : new Path(packageDelegate.getToDir());
+ }
+
/*
* @see IArchive#getArchiveFilePath()
*/
public IPath getArchiveFilePath() {
- return getDestinationPath().append(getName());
+ return getGlobalDestinationPath().append(getName());
}
/*
17 years, 6 months
JBoss Tools SVN: r2127 - trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/model/internal.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2007-06-15 12:55:21 -0400 (Fri, 15 Jun 2007)
New Revision: 2127
Modified:
trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/model/internal/ArchiveFileSetImpl.java
Log:
reworked to cache results and incrementally update list of matching files
Modified: trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/model/internal/ArchiveFileSetImpl.java
===================================================================
--- trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/model/internal/ArchiveFileSetImpl.java 2007-06-15 16:53:46 UTC (rev 2126)
+++ trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/model/internal/ArchiveFileSetImpl.java 2007-06-15 16:55:21 UTC (rev 2127)
@@ -26,7 +26,6 @@
import org.eclipse.core.runtime.Assert;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.Path;
-import org.jboss.ide.eclipse.archives.core.ArchivesCore;
import org.jboss.ide.eclipse.archives.core.model.DirectoryScannerFactory;
import org.jboss.ide.eclipse.archives.core.model.IArchiveFileSet;
import org.jboss.ide.eclipse.archives.core.model.DirectoryScannerFactory.DirectoryScannerExtension;
@@ -43,6 +42,7 @@
private XbFileSet filesetDelegate;
private DirectoryScannerExtension scanner;
+ private ArrayList matchingPaths;
private boolean rescanRequired = true;
public ArchiveFileSetImpl() {
@@ -54,20 +54,24 @@
this.filesetDelegate = delegate;
}
+
+ public void addMatchingFile(IPath file) {
+ if( !matchingPaths.contains(file) && matchesPath(file))
+ matchingPaths.add(file);
+ }
+
+ public void removeMatchingFile(IPath file ) {
+ if( matchingPaths.contains(file) && matchesPath(file))
+ matchingPaths.remove(file);
+ }
+
+
/*
* @see IArchiveFileSet#findMatchingPaths()
*/
- public IPath[] findMatchingPaths () {
- DirectoryScannerExtension scanner = getScanner();
- ArrayList paths = new ArrayList();
- IPath sp = getGlobalSourcePath();
- String matched[] = scanner.getIncludedFiles();
- for (int i = 0; i < matched.length; i++) {
- IPath path = sp.append(new Path(matched[i]));
- paths.add(path);
- }
-
- return (IPath[])paths.toArray(new IPath[paths.size()]);
+ public synchronized IPath[] findMatchingPaths () {
+ getScanner(); // ensure up to date
+ return (IPath[]) matchingPaths.toArray(new IPath[matchingPaths.size()]);
}
/*
@@ -134,8 +138,21 @@
private synchronized DirectoryScannerExtension getScanner() {
if( scanner == null || rescanRequired) {
rescanRequired = false;
+
+ // new scanner
scanner = DirectoryScannerFactory.createDirectoryScanner(
getGlobalSourcePath(), getIncludesPattern(), getExcludesPattern(), true);
+
+ // cache the paths
+ ArrayList paths = new ArrayList();
+ IPath sp = getGlobalSourcePath();
+ String matched[] = scanner.getIncludedFiles();
+ for (int i = 0; i < matched.length; i++) {
+ IPath path = sp.append(new Path(matched[i]));
+ paths.add(path);
+ }
+
+ matchingPaths = paths;
}
return scanner;
}
@@ -204,12 +221,19 @@
*/
public IPath getRootArchiveRelativePath(IPath inputFile) {
if( matchesPath(inputFile)) {
- String s = inputFile.toOSString().substring(getGlobalSourcePath().toOSString().length()+1);
- return getParent().getRootArchiveRelativePath().append(s);
+ return getParent().getRootArchiveRelativePath().append(getPathRelativeToParent(inputFile));
}
return null;
}
+ /*
+ * @see org.jboss.ide.eclipse.archives.core.model.IArchiveFileSet#getPathRelativeToParent(org.eclipse.core.runtime.IPath)
+ */
+ public IPath getPathRelativeToParent(IPath inputFile) {
+ String s = inputFile.toOSString().substring(getGlobalSourcePath().toOSString().length()+1);
+ return new Path(s);
+}
+
/*
* @see IArchiveFileSet#resetScanner()
*/
17 years, 6 months
JBoss Tools SVN: r2126 - trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/model.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2007-06-15 12:53:46 -0400 (Fri, 15 Jun 2007)
New Revision: 2126
Modified:
trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/model/IArchive.java
trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/model/IArchiveFileSet.java
Log:
API extension
Modified: trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/model/IArchive.java
===================================================================
--- trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/model/IArchive.java 2007-06-15 16:53:14 UTC (rev 2125)
+++ trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/model/IArchive.java 2007-06-15 16:53:46 UTC (rev 2126)
@@ -102,6 +102,13 @@
* destination (containing folder) of this archive
* @return An IPath to this package's destination folder
*/
+ public IPath getGlobalDestinationPath();
+
+ /**
+ * A path representing the string from the delegate
+ * May be work-space relative or global
+ * @return
+ */
public IPath getDestinationPath();
/**
Modified: trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/model/IArchiveFileSet.java
===================================================================
--- trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/model/IArchiveFileSet.java 2007-06-15 16:53:14 UTC (rev 2125)
+++ trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/model/IArchiveFileSet.java 2007-06-15 16:53:46 UTC (rev 2126)
@@ -114,4 +114,15 @@
* @return
*/
public IPath getRootArchiveRelativePath(IPath inputFile);
+
+ /**
+ * Get a path relative only to the folder or archive that is the direct parent of the fileset
+ * @param inputFile
+ * @return
+ */
+ public IPath getPathRelativeToParent(IPath inputFile);
+
+ public void addMatchingFile(IPath file);
+ public void removeMatchingFile(IPath file);
+
}
17 years, 6 months
JBoss Tools SVN: r2125 - trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/build.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2007-06-15 12:53:14 -0400 (Fri, 15 Jun 2007)
New Revision: 2125
Modified:
trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/build/ModelChangeListener.java
Log:
nodeRemoved contained a bug, wrong variable used
Modified: trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/build/ModelChangeListener.java
===================================================================
--- trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/build/ModelChangeListener.java 2007-06-14 10:59:01 UTC (rev 2124)
+++ trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/build/ModelChangeListener.java 2007-06-15 16:53:14 UTC (rev 2125)
@@ -33,7 +33,6 @@
*/
public void modelChanged(IArchiveNodeDelta delta) {
// if we're not building, get out
- System.out.println("** model changed");
if( !ArchivesCore.getInstance().getPreferenceManager().isBuilderEnabled(delta.getPostNode().getProjectPath()))
return;
@@ -162,8 +161,8 @@
} else if( removed.getNodeType() == IArchiveNode.TYPE_ARCHIVE_FOLDER ){
IArchiveFileSet[] filesets = ModelUtil.findAllDescendentFilesets(((IArchiveFolder)removed));
for( int i = 0; i < filesets.length; i++ ) {
- IPath[] removedPaths = ModelTruezipBridge.fullFilesetRemove(((IArchiveFileSet)removed), false);
- EventManager.filesRemoved(removedPaths, ((IArchiveFileSet)removed));
+ IPath[] removedPaths = ModelTruezipBridge.fullFilesetRemove(filesets[i], false);
+ EventManager.filesRemoved(removedPaths, ((IArchiveFileSet)filesets[i]));
}
postChange(removed);
return;
17 years, 6 months
JBoss Tools SVN: r2124 - trunk/documentation/GettingStartedGuide/docs/userguide/en/modules.
by jbosstools-commits@lists.jboss.org
Author: afedosik
Date: 2007-06-14 06:59:01 -0400 (Thu, 14 Jun 2007)
New Revision: 2124
Modified:
trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/GettingStartedWithRHDS.xml
Log:
Modified: trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/GettingStartedWithRHDS.xml
===================================================================
--- trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/GettingStartedWithRHDS.xml 2007-06-13 14:42:47 UTC (rev 2123)
+++ trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/GettingStartedWithRHDS.xml 2007-06-14 10:59:01 UTC (rev 2124)
@@ -147,16 +147,7 @@
<title>FAQ</title>
<para>For easy reference to Red Hat Developer Studio related questions, our FAQ provides answers to our most "popular" questions.
The sections of questions are organized by type. For further support, please contact support(a)exadel.com.</para>
- <section>
- <title>Top Questions</title>
- <para><emphasis role="bold">Is it possible to increase the performance of Eclipse after installing your product? My Eclipse now crawls.</emphasis></para>
- <para>By default, Eclipse allocates only 128 Mb of memory whatever physical memory you actually have installed. You can significantly increase performance
- if you allocate more memory. For example:</para>
- <para>eclipse.exe -vmargs -Xmx512M</para>
- <para><emphasis role="bold">How can I add my own tag library to the Red Hat Palette?</emphasis></para>
- <para>See Adding Tag Libraries in JBossJSFTools Guide</para>
- </section>
- <section>
+ <section>
<title>Before Installing, Tutorials, Examples, Readme Files</title>
<para><emphasis role="bold">I'm looking for examples, do you have any?</emphasis></para>
<para>Yes, simply go to our tutorials page</para>
@@ -199,7 +190,7 @@
<para>eclipse.exe -vmargs -Xmx512M</para>
<para><emphasis role="bold">How can I add my own tag library to the Red Hat Palette?</emphasis></para>
<para>See Adding Tag Libraries in JBossJSFTools Guide</para>
- <para><emphasis role="bold">I see the Oracle ADF Faces component library tags in the Exadel Palette, but I can't seem to find the libraries for ADF.
+ <para><emphasis role="bold">I see the Oracle ADF Faces component library tags in the Red Hat Palette, but I can't seem to find the libraries for ADF.
How do I use this component library with RHDS?</emphasis></para>
<para>See Adding Support for the Oracle ADF Components Library in the RHDS User Guide.</para>
17 years, 6 months
JBoss Tools SVN: r2123 - trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/preferencepages.
by jbosstools-commits@lists.jboss.org
Author: mculpepper(a)jboss.com
Date: 2007-06-13 10:42:47 -0400 (Wed, 13 Jun 2007)
New Revision: 2123
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/preferencepages/JBossServersPreferencePage.java
Log:
changed grid layouts back to formlayouts
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/preferencepages/JBossServersPreferencePage.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/preferencepages/JBossServersPreferencePage.java 2007-06-13 14:23:06 UTC (rev 2122)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/preferencepages/JBossServersPreferencePage.java 2007-06-13 14:42:47 UTC (rev 2123)
@@ -44,11 +44,10 @@
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.events.SelectionListener;
import org.eclipse.swt.graphics.Image;
+import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.layout.FormAttachment;
import org.eclipse.swt.layout.FormData;
import org.eclipse.swt.layout.FormLayout;
-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;
@@ -85,7 +84,8 @@
protected Control createContents(Composite parent) {
Composite main = new Composite(parent, SWT.BORDER);
- main.setLayout(new GridLayout(1, false));
+// main.setLayout(new GridLayout(1, false));
+ main.setLayout(new FormLayout());
createServerViewer(main);
createTimeoutGroup(main);
@@ -120,25 +120,31 @@
// where the page fold is
int pageColumn = 55;
+
+ private Group serverGroup;
protected void createServerViewer(Composite main) {
- Group serverGroup = new Group(main, SWT.NONE);
- serverGroup.setLayout(new GridLayout(1, false));
- serverGroup.setLayoutData(new GridData(GridData.FILL, GridData.FILL, true, false));
+ serverGroup = new Group(main, SWT.NONE);
+ // serverGroup.setLayout(new GridLayout(1, false));
+ FillLayout serverGroupLayout = new FillLayout();
+ serverGroupLayout.marginHeight = 5;
+ serverGroupLayout.marginWidth = 5;
+ serverGroup.setLayout(serverGroupLayout);
+// serverGroup.setLayoutData(new GridData(GridData.FILL, GridData.FILL, true, false));
serverGroup.setText("Servers");
workingCoppies = new HashMap();
serverTable = new Table(serverGroup, SWT.BORDER);
- serverTable.setLayoutData(new GridData(GridData.FILL, GridData.FILL, true, false));
-// FormData lData = new FormData();
-// lData.left = new FormAttachment(0,5);
-// lData.right = new FormAttachment(pageColumn-2,0);
-// lData.top = new FormAttachment(0,5);
-// lData.bottom = new FormAttachment(0,80);
-// serverTable.setLayoutData(lData);
+// serverTable.setLayoutData(new GridData(GridData.FILL, GridData.FILL, true, false));
+ FormData lData = new FormData();
+ lData.left = new FormAttachment(0,5);
+ lData.right = new FormAttachment(100,-5);
+ lData.top = new FormAttachment(0,5);
+ lData.bottom = new FormAttachment(30,-5);
+ serverGroup.setLayoutData(lData);
serverTableViewer = new TableViewer(serverTable);
serverTableViewer.setContentProvider(new IStructuredContentProvider() {
@@ -185,12 +191,13 @@
protected void createTimeoutGroup(Composite main) {
timeoutGroup = new Group(main, SWT.NONE);
timeoutGroup.setText(Messages.PreferencePageServerTimeouts);
- timeoutGroup.setLayoutData(new GridData(GridData.FILL, GridData.FILL, true, false));
-// FormData groupData = new FormData();
-// groupData.right = new FormAttachment(100, -5);
-// groupData.left = new FormAttachment(pageColumn+2, 0);
-// groupData.top = new FormAttachment(0,5);
-// timeoutGroup.setLayoutData(groupData);
+// timeoutGroup.setLayoutData(new GridData(GridData.FILL, GridData.FILL, true, false));
+ FormData groupData = new FormData();
+
+ groupData.left = new FormAttachment(0, 5);
+ groupData.right = new FormAttachment(100, -5);
+ groupData.top = new FormAttachment(serverGroup,5);
+ timeoutGroup.setLayoutData(groupData);
timeoutGroup.setLayout(new FormLayout());
17 years, 6 months
JBoss Tools SVN: r2122 - trunk/documentation/GettingStartedGuide/docs/userguide/en/images.
by jbosstools-commits@lists.jboss.org
Author: sabrashevich
Date: 2007-06-13 10:23:06 -0400 (Wed, 13 Jun 2007)
New Revision: 2122
Modified:
trunk/documentation/GettingStartedGuide/docs/userguide/en/images/SeamGenSetup.png
trunk/documentation/GettingStartedGuide/docs/userguide/en/images/StoppingServer.png
Log:
images are remade
Modified: trunk/documentation/GettingStartedGuide/docs/userguide/en/images/SeamGenSetup.png
===================================================================
(Binary files differ)
Modified: trunk/documentation/GettingStartedGuide/docs/userguide/en/images/StoppingServer.png
===================================================================
(Binary files differ)
17 years, 6 months
JBoss Tools SVN: r2121 - trunk/documentation/GettingStartedGuide/docs/userguide/en/modules.
by jbosstools-commits@lists.jboss.org
Author: afedosik
Date: 2007-06-13 10:08:11 -0400 (Wed, 13 Jun 2007)
New Revision: 2121
Modified:
trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/GettingStartedWithRHDS.xml
Log:
Installation section updated
Modified: trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/GettingStartedWithRHDS.xml
===================================================================
--- trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/GettingStartedWithRHDS.xml 2007-06-13 14:07:53 UTC (rev 2120)
+++ trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/GettingStartedWithRHDS.xml 2007-06-13 14:08:11 UTC (rev 2121)
@@ -10,29 +10,6 @@
</keywordset>
</chapterinfo>
<title>Getting Started with Red Hat Developer Studio</title>
- <section id="TechnicalRequirements">
- <?dbhtml filename="TechnicalRequirements.html"?>
-<title>Technical Requirements</title>
- <section id="Java">
- <title>Java</title>
- <para>Before installing Red Hat Developer Studio, make sure you have one of the following versions of Java
- installed:</para>
- <itemizedlist>
- <listitem><para>JDK 1.5 or higher</para></listitem>
- </itemizedlist>
- <para>It must be the full JDK, not just the JRE (Java Runtime Environment). For more information about
- target operating environments and compatible Java versions, refer to the JBoss web site. Please note
- that the Eclipse documentation states that you only need a Java Runtime Environment for Eclipse, but usage of Red Hat Developer Studio requires a full JDK in order to compile Java classes and JSP pages.</para>
- </section>
- <section id="OperatingSystems">
- <?dbhtml filename="OperatingSystems.html"?>
- <title>Operating Systems</title>
- <itemizedlist>
- <listitem><para>Windows</para></listitem>
- <listitem><para>Linux</para></listitem>
- </itemizedlist>
- </section>
- </section>
<section id="Installing">
<?dbhtml filename="Installing.html"?>
<title>Installing</title>
@@ -56,30 +33,25 @@
</mediaobject>
</figure>
- <para>After installation process you will have all required platforms to run Red Hat Developer Studio:</para>
+ <para>Installation process includes all required platforms to run Red Hat Developer Studio:</para>
<itemizedlist>
<listitem>
<para>Eclipse 3.2.2</para>
</listitem>
<listitem>
- <para>JBoss Application Server</para>
+ <para>JBoss J2EE Application Server</para>
+ <figure>
+ <title>JBoss J2EE Application Server installing</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/install2.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <note>The installer will install JBoss J2EE Application Server for running your applications if you select this option during the installation process.
+ If you want to use a different server than ours, you can change the setting in Red Hat Developer Studio.</note>
</listitem>
</itemizedlist>
-
- <para>Red Hat Developer Studio comes with the following plug-ins:</para>
- <itemizedlist>
- <listitem><para>WTP runtime 1.5</para></listitem>
- <listitem><para>GEF runtime 3.2</para></listitem>
- <listitem><para>JEM runtime 1.2</para></listitem>
- <listitem><para>EMF and SDO runtime 2.2</para></listitem>
- <listitem><para>XSD runtime 2.2</para></listitem>
- <listitem>Hibernate-tools-3.1.0 beta5 (without WTP, EMF, GEF, and other non-Hibernate plug-ins from
- Hibernate-tools-3.1.0 beta5)</listitem>
- <listitem><para>QuickImage 0.2.0</para></listitem>
- <listitem><para>Spring IDE 1.3.2</para></listitem>
- <listitem><para>Sun Glassfish 0.3</para></listitem>
- </itemizedlist>
-
</section>
<section id="InstallingthroughTheUpdateSite">
<?dbhtml filename="InstallingthroughTheUpdateSite.html"?>
@@ -181,7 +153,7 @@
<para>By default, Eclipse allocates only 128 Mb of memory whatever physical memory you actually have installed. You can significantly increase performance
if you allocate more memory. For example:</para>
<para>eclipse.exe -vmargs -Xmx512M</para>
- <para><emphasis role="bold">How can I add my own tag library to the Exadel Palette?</emphasis></para>
+ <para><emphasis role="bold">How can I add my own tag library to the Red Hat Palette?</emphasis></para>
<para>See Adding Tag Libraries in JBossJSFTools Guide</para>
</section>
<section>
@@ -225,7 +197,7 @@
<para>By default, Eclipse allocates only 128 Mb of memory whatever physical memory you actually have installed. You can significantly increase performance
if you allocate more memory. For example:</para>
<para>eclipse.exe -vmargs -Xmx512M</para>
- <para><emphasis role="bold">How can I add my own tag library to the Exadel Palette?</emphasis></para>
+ <para><emphasis role="bold">How can I add my own tag library to the Red Hat Palette?</emphasis></para>
<para>See Adding Tag Libraries in JBossJSFTools Guide</para>
<para><emphasis role="bold">I see the Oracle ADF Faces component library tags in the Exadel Palette, but I can't seem to find the libraries for ADF.
How do I use this component library with RHDS?</emphasis></para>
17 years, 6 months
JBoss Tools SVN: r2120 - trunk/documentation/GettingStartedGuide/docs/userguide/en/images.
by jbosstools-commits@lists.jboss.org
Author: afedosik
Date: 2007-06-13 10:07:53 -0400 (Wed, 13 Jun 2007)
New Revision: 2120
Added:
trunk/documentation/GettingStartedGuide/docs/userguide/en/images/install2.png
Modified:
trunk/documentation/GettingStartedGuide/docs/userguide/en/images/install.png
Log:
Installator Screenshots
Modified: trunk/documentation/GettingStartedGuide/docs/userguide/en/images/install.png
===================================================================
(Binary files differ)
Added: trunk/documentation/GettingStartedGuide/docs/userguide/en/images/install2.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/GettingStartedGuide/docs/userguide/en/images/install2.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
17 years, 6 months