JBoss Tools SVN: r4926 - 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-11-15 16:08:05 -0500 (Thu, 15 Nov 2007)
New Revision: 4926
Modified:
trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/model/ArchivesModelCore.java
Log:
JBIDE-1325
Couldn't duplicate the bug but I've wrapped the method in try-catch.
Modified: trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/model/ArchivesModelCore.java
===================================================================
--- trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/model/ArchivesModelCore.java 2007-11-15 17:15:39 UTC (rev 4925)
+++ trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/model/ArchivesModelCore.java 2007-11-15 21:08:05 UTC (rev 4926)
@@ -102,6 +102,8 @@
} catch( IllegalStateException ise ) {
ArchivesCoreLog.log(IStatus.WARNING, "Error creating directory scanner", ise);
return new IPath[]{};
+ } catch( NullPointerException npe ) {
+ return new IPath[]{};
}
}
17 years, 1 month
JBoss Tools SVN: r4925 - trunk/jsf/docs/userguide/en/images/struts.
by jbosstools-commits@lists.jboss.org
Author: ykryvinchanka
Date: 2007-11-15 12:15:39 -0500 (Thu, 15 Nov 2007)
New Revision: 4925
Modified:
trunk/jsf/docs/userguide/en/images/struts/struts_23.png
trunk/jsf/docs/userguide/en/images/struts/struts_24.png
trunk/jsf/docs/userguide/en/images/struts/struts_25.png
trunk/jsf/docs/userguide/en/images/struts/struts_26.png
trunk/jsf/docs/userguide/en/images/struts/struts_27.png
trunk/jsf/docs/userguide/en/images/struts/struts_32.png
Log:
http://jira.jboss.com/jira/browse/RHDS-181 Struts chapter (4.4. Graphical Editor for Tiles Files) screen shots update
Modified: trunk/jsf/docs/userguide/en/images/struts/struts_23.png
===================================================================
(Binary files differ)
Modified: trunk/jsf/docs/userguide/en/images/struts/struts_24.png
===================================================================
(Binary files differ)
Modified: trunk/jsf/docs/userguide/en/images/struts/struts_25.png
===================================================================
(Binary files differ)
Modified: trunk/jsf/docs/userguide/en/images/struts/struts_26.png
===================================================================
(Binary files differ)
Modified: trunk/jsf/docs/userguide/en/images/struts/struts_27.png
===================================================================
(Binary files differ)
Modified: trunk/jsf/docs/userguide/en/images/struts/struts_32.png
===================================================================
(Binary files differ)
17 years, 1 month
JBoss Tools SVN: r4924 - in trunk/documentation/guides/userguide/GettingStartedGuide/en: modules and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: sabrashevich
Date: 2007-11-15 11:29:36 -0500 (Thu, 15 Nov 2007)
New Revision: 4924
Added:
trunk/documentation/guides/userguide/GettingStartedGuide/en/images/first_seam/first_seam_18.png
Modified:
trunk/documentation/guides/userguide/GettingStartedGuide/en/images/first_seam/first_seam_17.png
trunk/documentation/guides/userguide/GettingStartedGuide/en/modules/first_seam.xml
Log:
http://jira.jboss.com/jira/browse/RHDS-137 updated text context and added new screenshots accordingly to a new build
Modified: trunk/documentation/guides/userguide/GettingStartedGuide/en/images/first_seam/first_seam_17.png
===================================================================
(Binary files differ)
Added: trunk/documentation/guides/userguide/GettingStartedGuide/en/images/first_seam/first_seam_18.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/guides/userguide/GettingStartedGuide/en/images/first_seam/first_seam_18.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: trunk/documentation/guides/userguide/GettingStartedGuide/en/modules/first_seam.xml
===================================================================
--- trunk/documentation/guides/userguide/GettingStartedGuide/en/modules/first_seam.xml 2007-11-15 15:43:57 UTC (rev 4923)
+++ trunk/documentation/guides/userguide/GettingStartedGuide/en/modules/first_seam.xml 2007-11-15 16:29:36 UTC (rev 4924)
@@ -366,9 +366,6 @@
<para>You have probably noticed that the web page template has a login link at the top of the page. You can use the Seam security framework to secure access to any web page or web action. You can implement the login logic in the <emphasis><property>checkLoggedIn</property></emphasis> method. In the following example, we just use hardcoded username and password. But you can easily change it to use database, LDAP or any other means.</para>
- <programlisting role="JAVA"><![CDATA[
-]]></programlisting>
-
<para>Then, on the action method, you can use the <emphasis>@AroundInvoke</emphasis> annotation to specify that it is only invoked by authenticated users.</para>
<programlisting role="JAVA"><![CDATA[public class LoggedInInterceptor
@@ -389,7 +386,7 @@
}
]]></programlisting>
- <para>Now, re-deploy the application and try the action button. The application redirects to the <emphasis>login</emphasis> page asking for login credentials. The method is invoked after you successfully logged in.</para>
+ <para>Now, re-deploy the application and try the action button. The application redirects to the <emphasis><property>login</property></emphasis> page asking for login credentials. The method is invoked after you successfully logged in.</para>
<figure>
<title>Access Control for Action Methods</title>
@@ -400,7 +397,7 @@
</mediaobject>
</figure>
- <para>We can also secure web pages. You can edit the <emphasis>Authenticator.java</emphasis> file to put an access constraint on the login page.</para>
+ <para>We can also secure web pages. You can edit the <emphasis><property>Authenticator.java</property></emphasis> file to put an access constraint on the login page.</para>
<programlisting role="JAVA"><![CDATA[package.org.domain.MySeamProj.session;
import org.jboss.seam.annotations.In;
@@ -427,7 +424,7 @@
}
]]></programlisting>
- <para>You can try to load the http://localhost:8080/MySeamProj/ URL in the browser and it will redirect to ask for login.</para>
+ <para>You can try to load the <emphasis><property>http://localhost:8080/MySeamProj/</property></emphasis> URL in the browser and it will redirect to ask for login.</para>
</section>
17 years, 1 month
JBoss Tools SVN: r4923 - trunk/jsf/docs/userguide/en/modules.
by jbosstools-commits@lists.jboss.org
Author: ochikvina
Date: 2007-11-15 10:43:57 -0500 (Thu, 15 Nov 2007)
New Revision: 4923
Modified:
trunk/jsf/docs/userguide/en/modules/palette.xml
Log:
http://jira.jboss.com/jira/browse/RHDS-301 - fixing bugs in chapter 5
Modified: trunk/jsf/docs/userguide/en/modules/palette.xml
===================================================================
--- trunk/jsf/docs/userguide/en/modules/palette.xml 2007-11-15 15:42:45 UTC (rev 4922)
+++ trunk/jsf/docs/userguide/en/modules/palette.xml 2007-11-15 15:43:57 UTC (rev 4923)
@@ -1,231 +1,434 @@
<?xml version='1.0' encoding='UTF-8'?>
<chapter id="palette" xreflabel="palette">
<?dbhtml filename="palette.html"?>
- <chapterinfo>
- <keywordset>
- <keyword>Jboss Tools palette</keyword>
- <keyword>tags</keyword>
- <keyword>JSP page</keyword>
- </keywordset>
- </chapterinfo>
-<title>JBoss Tools Palette</title>
-<para>The <property>JBoss Tools Palette</property> contains all your project tag libraries and allows you to:</para>
+ <chapterinfo>
+ <keywordset>
+ <keyword>Jboss Tools palette</keyword>
+ <keyword>tags</keyword>
+ <keyword>JSP page</keyword>
+ </keywordset>
+ </chapterinfo>
+ <title>JBoss Tools Palette</title>
+ <para>The <property>JBoss Tools Palette</property> allows you to:</para>
-<itemizedlist>
-<listitem><para>Insert tags into a JSP page with one click</para></listitem>
-<listitem><para>Add custom and 3rd party tags. <link linkend="AddingCustomJSFTagsToTheRedHatPalette7433">How to add</link></para></listitem>
-</itemizedlist>
+ <itemizedlist>
+ <listitem>
+ <para>Insert tags into a JSP page with one click</para>
+ </listitem>
+ <listitem>
+ <para>Add custom and 3rd party tags.</para>
+ </listitem>
+ </itemizedlist>
-<para>In this chapter we will also show you how to configure options for the palette.</para>
+ <para>The <property>JBoss Tools Palette</property> also provides possibility to add any tag
+ libraries to it. Or you can choose a necessary one from the list of already existent tag
+ libraries:</para>
+ <itemizedlist>
+ <listitem><para>HTML</para></listitem>
+ <listitem><para>JBoss</para></listitem>
+ <listitem><para>JSF</para></listitem>
+ <listitem><para>JSTL</para></listitem>
+ <listitem><para>MyFaces</para></listitem>
+ <listitem><para>Oracle ADF Faces</para></listitem>
+ <listitem><para>Struts</para></listitem>
+ <listitem><para>XHTML</para></listitem>
+ </itemizedlist>
+
+ <figure>
+ <title>Pallete Editor</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/palette/palette_editor.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
<section id="UsingThePalette(IncludingOne-ClickTagInsertion)">
-<?dbhtml filename="UsingThePalette(IncludingOne-ClickTagInsertion).html"?>
-<title>Using the Palette (Including One-Click Tag Insertion)</title>
-<section id="RedHatPalette">
- <?dbhtml filename="JBossToolsPalette.html"?>
- <title>JBoss Tools Palette</title>
+ <?dbhtml filename="UsingThePalette(IncludingOne-ClickTagInsertion).html"?>
+ <title>Using the Palette</title>
+ <section id="RedHatPalette">
+ <?dbhtml filename="JBossToolsPalette.html"?>
+ <title>JBoss Tools Palette</title>
-
+ <para> In the Palette Editor window(Figure 5.1. "Palette Editor") we can see that every
+ group contains its own subgroups. For example, JSF includes Core, Facelets, HTML.
+ So, in the Palette every group has the next view: <Group name>
+ <Subgroup name>. </para>
-<para>The palette becomes active when you open any JSP page. If you can't see the palette, select <emphasis><property>Window > Show View Other... > JBoos Tools Web > JBoss Tools Palette</property></emphasis> from the menu bar.</para>
+ <figure>
+ <title>JBoss Tools Palette</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/palette/pallete_1.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
-<para>The palette shown lists various tags organized by groups. You can see JSF, JSTL and Struts tag groups. By default there are four groups in the <property>Palette</property>.</para>
-<figure>
-<title>JBoss Tools Palette</title>
-<mediaobject>
- <imageobject>
- <imagedata fileref="images/palette/pallete_1.png"/>
- </imageobject>
-</mediaobject>
-</figure>
-</section>
-<section id="InsertingTagsIntoAJSPFile">
-<?dbhtml filename="InsertingTagsIntoAJSPFile.html"?>
-<title>Inserting Tags into a JSP File</title>
+ <para>By default the Palette is represented in Web Development Perspective with four
+ groups(Figure 5.2. "JBoss Tools Palette"). If you can't see it, select <emphasis>
+ <property>Window > Show View Other... > JBoos Tools Web >
+ JBoss Tools Palette</property>
+ </emphasis> from the menu bar.</para>
-<para>To insert a new tag is very simple. Place the cursor in the JSP page where you want to add a tag and
-then click the tag in the palette. In the example below, the commandButton tag has been inserted. Notice also that if you place the cursor over any tag, a balloon tip is shown with all the <emphasis role="italic"><property>"tag"</property></emphasis> attributes.</para>
-<figure>
-<title>Inserting Tag</title>
-<mediaobject>
- <imageobject>
- <imagedata fileref="images/palette/pallete_2.png"/>
- </imageobject>
-</mediaobject>
-</figure>
-</section>
+ <para>By using <property>Show/Hide</property> button you can add any predefined group of
+ tag libraries. It's also possible to create your own group. </para>
-<section id="AddingCustomJSFTagsToTheRedHatPalette7433">
-<?dbhtml filename="AddingCustomJSFTagsToTheJBossToolsPalette.html"?>
-<title>Adding Custom JSF Tags to the JBoss Tools Palette</title>
+ </section>
-<para>There are two ways to add any custom or 3rd party tag library to the <property>JBoss Tools Palette</property>:</para>
-<itemizedlist>
-<listitem><para>Drag-and-drop from the Web Projects view</para></listitem>
-<listitem><para>The Import button on the JBoss Tools Palette</para></listitem>
-</itemizedlist>
+ <section id="InsertingTagsIntoAJSPFile">
+ <?dbhtml filename="InsertingTagsIntoAJSPFile.html"?>
+ <title>Inserting Tags into a JSP File</title>
-<para>Before you can add your custom component library, you need to make sure it is included in your project.
- Either place the <emphasis role="italic"><property>".tld"</property></emphasis> file or the <emphasis role="italic"><property>".jar"</property></emphasis> that includes your tag library under the lib folder in your project.
- Restart RHDS.</para>
- <para>The best way to add any custom library is by using the <link linkend="AddingCustomCapabilityFeaturesTemplates">Custom Capability feature</link>. It is also possible to just copy the Jar file directly under project <emphasis>WEB-INF/lib</emphasis> directory.</para>
- </section>
- <section id="Drag_and_Drop65332">
-<?dbhtml filename="DragAndDrop.html"?>
-<title>Drag-and-Drop</title>
-<para>Switch to the Web Projects view and expand the Tag Libraries folder. If the view not active, select
- <emphasis><property>Window > Show View > Web Projects</property></emphasis> from the menu bar.</para>
+ <para>A new tag can be added into any text file including jsp, xhtml и htm(l).</para>
+ <para>It's very simple to do this. Place the cursor in the JSP page where you
+ want to add a tag and then click the tag in the palette. In the example below, the
+ commandButton tag has been inserted. Notice also that if you place the cursor over
+ any tag, a balloon tip is shown with all the <emphasis role="italic">
+ <property>"tag"</property>
+ </emphasis> attributes.</para>
-<figure>
-<title>Web Projects View</title>
-<mediaobject>
- <imageobject>
- <imagedata fileref="images/palette/pallete_3.png"/>
- </imageobject>
-</mediaobject>
-</figure>
-<para>Also make sure that the JBoss Tools Palette is open. Select the tag library that you want to add and simply drag-and-drop it on to the JBoss Tools Palette.</para>
- <para>You will see the following dialog window. As you can see Red Hat Developer Studio takes care of all the details.
- You just need to set the Group name to which to add this tag library. You can either add this tag library
- to an existing Group or just create a new one.</para>
-<figure>
-<title>Import Tags From TLD File Form</title>
-<mediaobject>
- <imageobject>
- <imagedata fileref="images/palette/pallete_4.png"/>
- </imageobject>
-</mediaobject>
-</figure>
-<para>Once you are finished, you will see the new tag library added to the JBoss Tools Palette.</para>
+ <figure>
+ <title>Inserting Tag</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/palette/pallete_2.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>The cursor position after adding a tag into a file is specified by
+ "|" symbol in the tag template on the right in the Palette Editor window. </para>
+ <figure>
+ <title>Palette Editor</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/palette/PaletteEditor2.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para> Above you can see where the cursor position for HTML/Form/input is set. So, after
+ adding this tag into your file the cursor will be in the attribute
+ "type". Then, you can straight use the combination of buttons <property>Ctrl
+ + Space</property> to inquire about a prompting. </para>
-<figure>
-<title>JBoss Tools Palette with New Tag Library</title>
-<mediaobject>
- <imageobject>
- <imagedata fileref="images/palette/pallete_5.png"/>
- </imageobject>
-</mediaobject>
-</figure>
-</section>
-<section id="ImportButton521">
-<?dbhtml filename="ImportButton.html"?>
-<title>Import Button</title>
-<para>The same you can do with <emphasis><property>Import</property></emphasis> button.</para>
-<figure>
-<title>Import Button</title>
-<mediaobject>
- <imageobject>
- <imagedata fileref="images/palette/pallete_6.png"/>
- </imageobject>
-</mediaobject>
-</figure>
-<para>On this screen you can select <emphasis><property>Browse</property></emphasis> to locate the tag library that you want to add.</para>
-<figure>
-<title>Import Tags From TLD File Form</title>
-<mediaobject>
- <imageobject>
- <imagedata fileref="images/palette/pallete_7.png"/>
- </imageobject>
-</mediaobject>
-</figure>
-<para>Now select the TLD file you want to be edited:</para>
-<figure>
-<title>Select TLD File</title>
-<mediaobject>
- <imageobject>
- <imagedata fileref="images/palette/pallete_8.png"/>
- </imageobject>
-</mediaobject>
-</figure>
-</section>
-</section>
+ <figure>
+ <title>Cursor position</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/palette/Cursor_position.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
-<section id="PaletteOptions">
-<?dbhtml filename="PaletteOptions.html"?>
-<title>Palette Options</title>
+ </section>
-<para>There are a number of ways you can configure JBoss Tools Palette options. There are three buttons at the top right corner:</para>
+ <section id="AddingCustomJSFTagsToTheRedHatPalette7433">
+ <?dbhtml filename="AddingCustomJSFTagsToTheJBossToolsPalette.html"?>
+ <title>Adding Custom JSF Tags to the JBoss Tools Palette</title>
-<itemizedlist>
-<listitem><para>Palette Editor</para></listitem>
-<listitem><para>Show/Hide</para></listitem>
-<listitem><para>Import</para></listitem>
-</itemizedlist>
-<figure>
-<title>Palette Buttons</title>
-<mediaobject>
- <imageobject>
- <imagedata fileref="images/palette/pallete_9.png"/>
- </imageobject>
-</mediaobject>
-</figure>
-<section id="PaletteEditor">
-<?dbhtml filename="PaletteEditor.html"?>
-<title>Palette Editor</title>
+ <para>There are two ways to add any custom or 3rd party tag library to the
+ <property>JBoss Tools Palette</property>:</para>
+ <itemizedlist>
+ <listitem>
+ <para>Drag-and-drop from the Web Projects view</para>
+ </listitem>
+ <listitem>
+ <para>The Import button on the JBoss Tools Palette</para>
+ </listitem>
+ </itemizedlist>
-<para>This allows you to edit the tags on the palette.</para>
-<section id="Show/Hide">
-<?dbhtml filename="Show/Hide.html"?>
-<title>Show/Hide</title>
+ <para>Before you can add your custom component library, you need to make sure it is
+ included in your project. Either place the <emphasis role="italic">
+ <property>".tld"</property>
+ </emphasis> file or the <emphasis role="italic">
+ <property>".jar"</property>
+ </emphasis> that includes your tag library under the lib folder in your project.
+ </para>
+ </section>
-<para><emphasis><property>Show/Hide</property></emphasis> is a very useful feature that allows you to control the number of tag groups that are shown on the palette.</para>
-<itemizedlist>
-<listitem><para>Click <emphasis><property>Show/Hide</property></emphasis> button</para></listitem>
-</itemizedlist>
-<figure>
-<title>Show/Hide Button</title>
-<mediaobject>
- <imageobject>
- <imagedata fileref="images/palette/pallete_10.png"/>
- </imageobject>
-</mediaobject>
-</figure>
+ <section id="Drag_and_Drop65332">
+ <?dbhtml filename="DragAndDrop.html"?>
+ <title>Drag-and-Drop</title>
+ <para>Switch to the Web Projects view and expand the Tag Libraries folder. If the view
+ not active, select <emphasis>
+ <property>Window > Show View > Web Projects</property>
+ </emphasis> from the menu bar.</para>
-<itemizedlist>
-<listitem><para>In the dialog Show/Hide Drawers check the groups you want to be shown on the palette:</para></listitem>
-</itemizedlist>
-<figure>
-<title>Show/Hide Drawers</title>
-<mediaobject>
- <imageobject>
- <imagedata fileref="images/palette/pallete_11.png"/>
- </imageobject>
-</mediaobject>
-</figure>
-<itemizedlist>
-<listitem><para>Click <emphasis><property>OK</property></emphasis>. The new groups will now be displayed on the palette:</para></listitem>
-</itemizedlist>
-<figure>
-<title>New Added Groups</title>
-<mediaobject>
- <imageobject>
- <imagedata fileref="images/palette/pallete_12.png"/>
- </imageobject>
-</mediaobject>
-</figure>
-</section>
-<section id="Import">
-<?dbhtml filename="Import.html"?>
-<title>Import</title>
+ <figure>
+ <title>Web Projects View</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/palette/pallete_3.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>Also make sure that the JBoss Tools Palette is open. Select the tag library that
+ you want to add and simply drag-and-drop it on to the JBoss Tools Palette.</para>
+ <para>You will see the following dialog window. As you can see Red Hat Developer Studio
+ takes care of all the details. You just need to set the Group name to which to add
+ this tag library. You can either add this tag library to an existing Group or just
+ create a new one.</para>
+ <figure>
+ <title>Import Tags From TLD File Form</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/palette/pallete_4.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>Once you are finished, you will see the new tag library added to the JBoss Tools
+ Palette.</para>
-<para>The Import button lets you add a custom or 3rd party tag library to <property>JBoss Tools Palette</property>. See <link linkend="ImportButton521">here</link> how to add.
-<!--<link linkend="CreatingAndWorkingCustomCapability">Learn how to import</link>. --></para>
+ <figure>
+ <title>JBoss Tools Palette with New Tag Library</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/palette/pallete_5.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ </section>
+ <section id="ImportButton521">
+ <?dbhtml filename="ImportButton.html"?>
+ <title>Import Button</title>
+ <para>The same you can do with <emphasis>
+ <property>Import</property>
+ </emphasis> button.</para>
+ <figure>
+ <title>Import Button</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/palette/pallete_6.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>On this screen you can select <emphasis>
+ <property>Browse</property>
+ </emphasis> to locate the tag library that you want to add.</para>
+ <figure>
+ <title>Import Tags From TLD File Form</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/palette/pallete_7.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>Now select the TLD file you want to be added:</para>
+ <figure>
+ <title>Select TLD File</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/palette/pallete_8.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ </section>
+ </section>
-</section>
-</section>
+ <section id="PaletteOptions">
+ <?dbhtml filename="PaletteOptions.html"?>
+ <title>Palette Options</title>
-</section>
-<section id="RichFacesSupport">
-<?dbhtml filename="RichFacesSupport.html"?>
-<title>Rich Faces Support</title>
-<para>Red Hat Developer Studio comes with a tight integration with <emphasis><property>Rich Faces</property></emphasis> component framework. After installing RHDS Rich Faces components as well as <emphasis><property>Ajax4jsf</property></emphasis> ones are already on the <property>JBoss Tools Palette</property>:</para>
-<figure>
-<title>Rich Faces Components</title>
-<mediaobject>
- <imageobject>
- <imagedata fileref="images/palette/pallete_13.png"/>
- </imageobject>
-</mediaobject>
-</figure>
-</section>
+ <para>There is possibility to configure the <property>JBoss Tools Palette</property>:</para>
-</chapter>
\ No newline at end of file
+ <itemizedlist>
+ <listitem>
+ <para> to edit the palette content by adding, removing or changing the palette
+ elements</para>
+ </listitem>
+ <listitem>
+ <para> to show/hide groups, subgroups</para>
+ </listitem>
+ <listitem>
+ <para>to import groups, subgroups</para>
+ </listitem>
+ </itemizedlist>
+
+ <figure>
+ <title>Palette Buttons</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/palette/pallete_9.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <section id="PaletteEditor">
+ <?dbhtml filename="PaletteEditor.html"?>
+ <title>Palette Editor</title>
+
+ <para>To edit the Pallete view use <property>Edit</property> button. The Palette
+ Editor provides following possibilities: <itemizedlist>
+ <listitem>
+ <para>to work with set of icons.</para>
+ <figure>
+ <title>Creating a set of icons</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/palette/PaletteEditor3.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ </listitem>
+
+
+ <listitem>
+ <para>to edit icons in the chosen set</para>
+ <figure>
+ <title>Editing icons</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/palette/PaletteEditor4.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ </listitem>
+
+ <listitem>
+ <para>to edit a group</para>
+ <figure>
+ <title>Editing a group</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/palette/PaletteEditor5.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ </listitem>
+
+ <listitem>
+ <para>to edit a subgroup</para>
+ <figure>
+ <title>Editing a subgroup</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/palette/PaletteEditor6.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ </listitem>
+
+ <listitem>
+ <para>to edit a subgroup content</para>
+ <figure>
+ <title>Editing a subgroup content</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/palette/PaletteEditor7.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ </listitem>
+
+ <listitem>
+ <para>to edit a palette element or macro</para>
+ <figure>
+ <title>Editing a palette element </title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/palette/PaletteEditor8.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>Parameters of the Palette element are put into the table on the right.
+ Table cells are provided with editors and modal dialogue windows for
+ choosing necessary icons. For 'start text' and 'end text'(or macro) there is
+ possibility to control the cursor position by using "|" symbol. </para>
+ <figure>
+ <title>Parameters of the Palette element</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/palette/PaletteEditor9.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ </listitem>
+
+
+ </itemizedlist>
+ </para>
+ </section>
+
+ <section id="Show/Hide">
+ <?dbhtml filename="Show/Hide.html"?>
+ <title>Show/Hide</title>
+
+ <para><emphasis>
+ <property>Show/Hide</property>
+ </emphasis> is a very useful feature that allows you to control the number of tag
+ groups that are shown on the palette.</para>
+ <itemizedlist>
+ <listitem>
+ <para>Click <emphasis>
+ <property>Show/Hide</property>
+ </emphasis> button</para>
+ </listitem>
+ </itemizedlist>
+ <figure>
+ <title>Show/Hide Button</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/palette/pallete_10.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+ <itemizedlist>
+ <listitem>
+ <para>In the dialog Show/Hide Drawers check the groups you want to be shown on
+ the palette:</para>
+ </listitem>
+ </itemizedlist>
+ <figure>
+ <title>Show/Hide Drawers</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/palette/pallete_11.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <itemizedlist>
+ <listitem>
+ <para>Click <emphasis>
+ <property>OK</property>
+ </emphasis>. The new groups will now be displayed on the palette:</para>
+ </listitem>
+ </itemizedlist>
+ <figure>
+ <title>New Added Groups</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/palette/pallete_12.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ </section>
+ <section id="Import">
+ <?dbhtml filename="Import.html"?>
+ <title>Import</title>
+
+ <para>The Import button lets you add a custom or 3rd party tag library to
+ <property>JBoss Tools Palette</property>. See <link linkend="ImportButton521"
+ >here</link> how to add.
+ <!--<link linkend="CreatingAndWorkingCustomCapability">Learn how to import</link>. --></para>
+
+ </section>
+ </section>
+
+ <section id="RichFacesSupport">
+ <?dbhtml filename="RichFacesSupport.html"?>
+ <title>Rich Faces Support</title>
+ <para>Red Hat Developer Studio comes with a tight integration with <emphasis>
+ <property>Rich Faces</property>
+ </emphasis> component framework. After installing RHDS Rich Faces components as well as <emphasis>
+ <property>Ajax4jsf</property>
+ </emphasis> ones are already on the <property>JBoss Tools Palette</property>:</para>
+ <figure>
+ <title>Rich Faces Components</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/palette/pallete_13.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ </section>
+
+</chapter>
17 years, 1 month
JBoss Tools SVN: r4922 - trunk/jsf/docs/userguide/en/images/palette.
by jbosstools-commits@lists.jboss.org
Author: ochikvina
Date: 2007-11-15 10:42:45 -0500 (Thu, 15 Nov 2007)
New Revision: 4922
Added:
trunk/jsf/docs/userguide/en/images/palette/Cursor_position.png
trunk/jsf/docs/userguide/en/images/palette/PaletteEditor.png
trunk/jsf/docs/userguide/en/images/palette/PaletteEditor2.png
trunk/jsf/docs/userguide/en/images/palette/PaletteEditor3.png
trunk/jsf/docs/userguide/en/images/palette/PaletteEditor4.png
trunk/jsf/docs/userguide/en/images/palette/PaletteEditor5.png
trunk/jsf/docs/userguide/en/images/palette/PaletteEditor6.png
trunk/jsf/docs/userguide/en/images/palette/PaletteEditor7.png
trunk/jsf/docs/userguide/en/images/palette/PaletteEditor8.png
trunk/jsf/docs/userguide/en/images/palette/PaletteEditor9.png
trunk/jsf/docs/userguide/en/images/palette/palette_4.png
Log:
http://jira.jboss.com/jira/browse/RHDS-288 - adding a screenshot
Added: trunk/jsf/docs/userguide/en/images/palette/Cursor_position.png
===================================================================
(Binary files differ)
Property changes on: trunk/jsf/docs/userguide/en/images/palette/Cursor_position.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/jsf/docs/userguide/en/images/palette/PaletteEditor.png
===================================================================
(Binary files differ)
Property changes on: trunk/jsf/docs/userguide/en/images/palette/PaletteEditor.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/jsf/docs/userguide/en/images/palette/PaletteEditor2.png
===================================================================
(Binary files differ)
Property changes on: trunk/jsf/docs/userguide/en/images/palette/PaletteEditor2.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/jsf/docs/userguide/en/images/palette/PaletteEditor3.png
===================================================================
(Binary files differ)
Property changes on: trunk/jsf/docs/userguide/en/images/palette/PaletteEditor3.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/jsf/docs/userguide/en/images/palette/PaletteEditor4.png
===================================================================
(Binary files differ)
Property changes on: trunk/jsf/docs/userguide/en/images/palette/PaletteEditor4.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/jsf/docs/userguide/en/images/palette/PaletteEditor5.png
===================================================================
(Binary files differ)
Property changes on: trunk/jsf/docs/userguide/en/images/palette/PaletteEditor5.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/jsf/docs/userguide/en/images/palette/PaletteEditor6.png
===================================================================
(Binary files differ)
Property changes on: trunk/jsf/docs/userguide/en/images/palette/PaletteEditor6.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/jsf/docs/userguide/en/images/palette/PaletteEditor7.png
===================================================================
(Binary files differ)
Property changes on: trunk/jsf/docs/userguide/en/images/palette/PaletteEditor7.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/jsf/docs/userguide/en/images/palette/PaletteEditor8.png
===================================================================
(Binary files differ)
Property changes on: trunk/jsf/docs/userguide/en/images/palette/PaletteEditor8.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/jsf/docs/userguide/en/images/palette/PaletteEditor9.png
===================================================================
(Binary files differ)
Property changes on: trunk/jsf/docs/userguide/en/images/palette/PaletteEditor9.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/jsf/docs/userguide/en/images/palette/palette_4.png
===================================================================
(Binary files differ)
Property changes on: trunk/jsf/docs/userguide/en/images/palette/palette_4.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
17 years, 1 month
JBoss Tools SVN: r4921 - in trunk/documentation/guides/userguide/GettingStartedGuide/en: modules and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: sabrashevich
Date: 2007-11-15 10:29:25 -0500 (Thu, 15 Nov 2007)
New Revision: 4921
Added:
trunk/documentation/guides/userguide/GettingStartedGuide/en/images/first_seam/first_seam_12.png
trunk/documentation/guides/userguide/GettingStartedGuide/en/images/first_seam/first_seam_15.png
trunk/documentation/guides/userguide/GettingStartedGuide/en/images/first_seam/first_seam_16.png
trunk/documentation/guides/userguide/GettingStartedGuide/en/images/first_seam/first_seam_17.png
Modified:
trunk/documentation/guides/userguide/GettingStartedGuide/en/images/first_seam/first_seam_13.png
trunk/documentation/guides/userguide/GettingStartedGuide/en/images/first_seam/first_seam_14.png
trunk/documentation/guides/userguide/GettingStartedGuide/en/modules/first_seam.xml
Log:
http://jira.jboss.com/jira/browse/RHDS-137 updated text context and added new screenshots accordingly to a new build
Added: trunk/documentation/guides/userguide/GettingStartedGuide/en/images/first_seam/first_seam_12.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/guides/userguide/GettingStartedGuide/en/images/first_seam/first_seam_12.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: trunk/documentation/guides/userguide/GettingStartedGuide/en/images/first_seam/first_seam_13.png
===================================================================
(Binary files differ)
Modified: trunk/documentation/guides/userguide/GettingStartedGuide/en/images/first_seam/first_seam_14.png
===================================================================
(Binary files differ)
Added: trunk/documentation/guides/userguide/GettingStartedGuide/en/images/first_seam/first_seam_15.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/guides/userguide/GettingStartedGuide/en/images/first_seam/first_seam_15.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/guides/userguide/GettingStartedGuide/en/images/first_seam/first_seam_16.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/guides/userguide/GettingStartedGuide/en/images/first_seam/first_seam_16.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/guides/userguide/GettingStartedGuide/en/images/first_seam/first_seam_17.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/guides/userguide/GettingStartedGuide/en/images/first_seam/first_seam_17.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: trunk/documentation/guides/userguide/GettingStartedGuide/en/modules/first_seam.xml
===================================================================
--- trunk/documentation/guides/userguide/GettingStartedGuide/en/modules/first_seam.xml 2007-11-15 14:55:25 UTC (rev 4920)
+++ trunk/documentation/guides/userguide/GettingStartedGuide/en/modules/first_seam.xml 2007-11-15 15:29:25 UTC (rev 4921)
@@ -163,16 +163,14 @@
</mediaobject>
</figure>
- <!-- Not yet ...
- <para>Notice that we do not need to re-build and re-deploy the application. Just save the edited page and reload the browser.</para>
- -->
-
+ <para>Notice that we do not need to re-build and re-deploy the application. Just save the edited page and reload the browser.</para>
+
</section>
<section>
<title>Add a Web Page and an Action</title>
- <para>To add a new page and related UI action to the project, use the <emphasis><property>New > Other ... > Seam > Seam Form</property></emphasis> wizard. You are prompted to enter the name of the web page, the name for the Seam component that handles UI actions from the page, and UI action method name.</para>
+ <para>To add a new page and related UI action to the project, use the <emphasis><property>New > Other ... > Seam > Seam Form</property></emphasis> wizard. You are prompted to enter the name of the project and seam component name, all the others fields will be filled by the wizard.</para>
<figure>
<title>New Form for the Application</title>
@@ -183,45 +181,38 @@
</mediaobject>
</figure>
- <para>The wizard generate a web page with a single text input field and an action button. Notice that the generated page uses <emphasis>layout/template.xhtml</emphasis> as a template. The template page provides the page header, footer, side menu, and CSS styles (see the template.xhtml for more details). The Simplepage.xhtml is assembled into the template when the Simplepage.seam URL is loaded.</para>
+ <para>The wizard generate a web page with a single text input field and an action button. Notice that the generated page uses <emphasis><property>layout/template.xhtml</property></emphasis> as a template. The template page provides the page header, footer, side menu, and CSS styles (see the template.xhtml for more details). The simpleAction.xhtml is assembled into the template when the simpleAction.seam URL is loaded.</para>
<programlisting role="XML"><![CDATA[
<!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- xmlns:s="http://jboss.com/products/seam/taglib"
- xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:f="http://java.sun.com/jsf/core"
- xmlns:h="http://java.sun.com/jsf/html"
- template="layout/template.xhtml">
+ <ui:composition> xmlns:s="http://jboss.com/products/seam/taglib"
+ xmlns:ui="http://java.sun.com/jsf/facelets"
+ xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:h="http://java.sun.com/jsf/html"
+ template="layout/template.xhtml">
<ui:define name="body">
- <h1>Simplepage</h1>
- <p>Generated form page</p>
-
<h:messages globalOnly="true" styleClass="message"/>
- <h:form id="simpleAction">
- <div class="dialog">
- <s:validateAll>
- <div class="prop">
- <span class="name">Value</span>
- <span class="value">
- <s:decorate>
+ <h:form id="simpleActionForm">
+ <rich:panel>
+ <f:facet name="header">simpleAction</f:facet>
+ <s:decorate id="valueDecoration" template="layout/edit.xhtml">
+ <ui:define name="label">Value</ui:define>
<h:inputText id="value" required="true"
value="#{simpleAction.value}"/>
</s:decorate>
- </span>
- </div>
- </s:validateAll>
- </div>
- <div class="actionButtons">
- <h:commandButton id="hello" value="hello"
- action="#{simpleAction.hello}"/>
- </div>
- </h:form>
-
+ <div style="clear:both"/>
+ </rich:panel>
+
+ <div class="actionButtons">
+ <h:commandButton id="simpleAction" value="simpleAction"
+ action="#{simpleAction.simpleAction}"/>
+ </div>
+ </h:form>
</ui:define>
</ui:composition>
@@ -234,9 +225,17 @@
</imageobject>
</mediaobject>
</figure>
- <para>The <emphasis>#{simpleAction.value}</emphasis> notation on the web page maps to the "value" property in the backend component named "simpleAction", and the <emphasis>#{simpleAction.hello}</emphasis> notation indicates that the <emphasis><property>hello()</property></emphasis> method is called when the button is clicked on. Here is the "simpleAction" named backend Seam component generated by the wizard.</para>
+ <para>The <emphasis><property>#{simpleAction.value}</property></emphasis> notation on the web page maps to the "value" property in the backend component named "simpleAction", and the <emphasis><property>#{simpleAction.simpleAction}</property></emphasis> notation indicates that the <emphasis><property>simpleAction()</property></emphasis> method is called when the button is clicked on. Here is the "simpleAction" named backend Seam component generated by the wizard.</para>
- <programlisting role="JAVA"><![CDATA[
+ <programlisting role="JAVA"><![CDATA[package org.domain.MySeamProj.session;
+
+import org.jboss.seam.annotations.Name;
+import org.jboss.seam.annotations.In;
+import org.jboss.seam.annotations.Logger;
+import org.jboss.seam.log.Log;
+import org.jboss.seam.core.FacesMessages;
+import org.hibernate.validator.Length;
+
@Name("simpleAction")
public class SimpleAction {
@@ -248,12 +247,11 @@
private String value;
//seam-gen method
- public String hello()
+ public void simpleAction()
{
//implement your business logic here
- log.info("simpleAction.echo() action called with: #{simpleAction.value}");
- facesMessages.add("echo #{simpleAction.value}");
- return "success";
+ log.info("simpleAction.simpleAction() action called with: #{simpleAction.value}");
+ facesMessages.add("simpleAction #{simpleAction.value}");
}
//add additional action methods
@@ -272,14 +270,14 @@
}
]]></programlisting>
- <para>Load the Simplepage.seam in the web browser. Type something in the text field and click on the "hello" button. A JSF message containing the input string is created by the <emphasis><property>SimpleAction.hello()</property></emphasis> method. The message is displayed on the page via the <emphasis role="bold"><property><h:messages></property></emphasis> tag.</para>
+ <para>Load the Simplepage.seam in the web browser. Type something in the text field and click on the "simpleAction" button. A JSF message containing the input string is created by the <emphasis><property>simpleAction.simpleAction()</property></emphasis> method. The message is displayed on the page via the <emphasis role="bold"><property><h:message></property></emphasis> tag.</para>
</section>
<section>
<title>Input Validation</title>
- <para>Notice that in the generated SimpleAction class, there is a <emphasis>@Length</emphasis> annotation to validate the input when the input string is bound to <emphasis>#{simpleAction.value}</emphasis>. To see how this works, enter a text string longer than 10 chars and click on the button. This is what you should see.</para>
+ <para>Notice that in the generated SimpleAction class, there is a <emphasis><property>@Length</property></emphasis> annotation to validate the input when the input string is bound to <emphasis><property>#{simpleAction.value}</property></emphasis>. To see how this works, enter a text string longer than 10 chars and click on the button. This is what you should see.</para>
<figure>
<title>The Input Validation in Action</title>
@@ -290,10 +288,9 @@
</mediaobject>
</figure>
- <para>Seam supports many different input validation annotations. To see an example, you can replace the <emphasis>@Length(max=10)</emphasis> annotation with the following. It would require the input string to have a first name and last name separated by a space. If the validation fails, the web page would print the customized error message.</para>
+ <para>Seam supports many different input validation annotations. To see an example, you can replace the <emphasis><property>@Length(max=10)</property></emphasis> annotation with the following. It would require the input string to have a first name and last name separated by a space. If the validation fails, the web page would print the customized error message.</para>
- <programlisting role="JAVA"><![CDATA[
-@NotNull
+ <programlisting role="JAVA"><![CDATA[@NotNull
@Pattern(regex="^[a-zA-Z.-]+ [a-zA-Z.-]+",
message="Need a firstname and a lastname")
public String getValue()
@@ -367,7 +364,7 @@
<section>
<title>Add Security to the Application</title>
- <para>You have probably noticed that the web page template has a login link at the top of the page. You can use the Seam security framework to secure access to any web page or web action. You can implement the login logic in the <emphasis>checkLoggedIn</emphasis> method. In the following example, we just use hardcoded username and password. But you can easily change it to use database, LDAP or any other means.</para>
+ <para>You have probably noticed that the web page template has a login link at the top of the page. You can use the Seam security framework to secure access to any web page or web action. You can implement the login logic in the <emphasis><property>checkLoggedIn</property></emphasis> method. In the following example, we just use hardcoded username and password. But you can easily change it to use database, LDAP or any other means.</para>
<programlisting role="JAVA"><![CDATA[
]]></programlisting>
17 years, 1 month
JBoss Tools SVN: r4920 - trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2007-11-15 09:55:25 -0500 (Thu, 15 Nov 2007)
New Revision: 4920
Modified:
trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences/SeamSettingsPreferencePage.java
Log:
JBIDE-1311
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences/SeamSettingsPreferencePage.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences/SeamSettingsPreferencePage.java 2007-11-15 14:55:04 UTC (rev 4919)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences/SeamSettingsPreferencePage.java 2007-11-15 14:55:25 UTC (rev 4920)
@@ -205,7 +205,7 @@
private List<String> getNameList() {
Set<String> names = new TreeSet<String>();
- names.addAll(SeamRuntimeManager.getInstance().getRuntimeNames());
+ names.addAll(getAvailableRuntimeNames());
if(hasSeamSupport()) {
String currentName = seamProject.getRuntimeName();
if(currentName != null) names.add(currentName);
@@ -363,11 +363,26 @@
SeamRuntimeManager.getInstance().addRuntime(added.get(0));
getFieldEditor().setValue(added.get(0).getName());
((ITaggedFieldEditor) ((CompositeEditor) runtime)
- .getEditors().get(1)).setTags(SeamRuntimeManager.getInstance().getRuntimeNames()
+ .getEditors().get(1)).setTags(getAvailableRuntimeNames()
.toArray(new String[0]));
runtime.setValue(added.get(0).getName());
}
}
}
+ private List<String> getAvailableRuntimeNames() {
+ if(hasNature("org.eclipse.jdt.core.javanature")
+ && !hasNature("org.eclipse.wst.common.project.facet.core.nature")) {
+ return SeamRuntimeManager.getInstance().getAllRuntimeNames();
+ }
+ return SeamRuntimeManager.getInstance().getRuntimeNames();
+ }
+
+ private boolean hasNature(String natureId) {
+ try {
+ return project != null && project.isAccessible() && project.hasNature(natureId);
+ } catch (CoreException e) {
+ return false;
+ }
+ }
}
17 years, 1 month
JBoss Tools SVN: r4919 - trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/core/project/facet.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2007-11-15 09:55:04 -0500 (Thu, 15 Nov 2007)
New Revision: 4919
Modified:
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/core/project/facet/SeamRuntimeManager.java
Log:
JBIDE-1311
Modified: trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/core/project/facet/SeamRuntimeManager.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/core/project/facet/SeamRuntimeManager.java 2007-11-15 14:54:02 UTC (rev 4918)
+++ trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/core/project/facet/SeamRuntimeManager.java 2007-11-15 14:55:04 UTC (rev 4919)
@@ -201,6 +201,15 @@
return result;
}
+ public List<String> getAllRuntimeNames() {
+ SeamRuntime[] rts = getRuntimes();
+ List<String> result = new ArrayList<String>();
+ for(SeamRuntime seamRuntime : rts) {
+ result.add(seamRuntime.getName());
+ }
+ return result;
+ }
+
private void validateProjects() {
IProject[] ps = ResourcesPlugin.getWorkspace().getRoot().getProjects();
for (int i = 0; i < ps.length; i++) {
17 years, 1 month
JBoss Tools SVN: r4918 - trunk/seam/plugins/org.jboss.tools.seam.xml/resources/help.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2007-11-15 09:54:02 -0500 (Thu, 15 Nov 2007)
New Revision: 4918
Modified:
trunk/seam/plugins/org.jboss.tools.seam.xml/resources/help/keys-seam.properties
Log:
JBIDE-1300
Modified: trunk/seam/plugins/org.jboss.tools.seam.xml/resources/help/keys-seam.properties
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.xml/resources/help/keys-seam.properties 2007-11-15 14:38:05 UTC (rev 4917)
+++ trunk/seam/plugins/org.jboss.tools.seam.xml/resources/help/keys-seam.properties 2007-11-15 14:54:02 UTC (rev 4918)
@@ -4,3 +4,592 @@
FileSeamComponent11.editorTitle=Seam Component 1.1 Editor
FileSeamComponent12.editorTitle=Seam Component 1.2 Editor
FileSeamComponent20.editorTitle=Seam Component 2.0 Editor
+
+FileSeamComponent12_Rename.WindowTitle=Rename
+FileSeamComponent12_Rename.Title=File Seam Component
+FileSeamComponent12_Rename.Message=Enter new name
+
+FileSeamComponent12_AddProperty.WindowTitle=Add Simple Property
+FileSeamComponent12_AddProperty.Title=Property
+
+FileSeamComponent12_AddListProperty.WindowTitle=Add List Property
+FileSeamComponent12_AddListProperty.Title=Property
+
+FileSeamComponent12_AddMapProperty.WindowTitle=Add Map Property
+FileSeamComponent12_AddMapProperty.Title=Property
+
+FileSeamComponent12_Properties.WindowTitle=Properties
+FileSeamComponent12_Properties.Title=File Seam Component 1.2
+
+FileSeamComponent12_EditorActionList_AddProperty.WindowTitle=Add Simple Property
+FileSeamComponent12_EditorActionList_AddProperty.Title=Property
+
+FileSeamComponent12_EditorActionList_AddListProperty.WindowTitle=Add List Property
+FileSeamComponent12_EditorActionList_AddListProperty.Title=Property
+
+FileSeamComponent12_EditorActionList_AddMapProperty.WindowTitle=Add Map Property
+FileSeamComponent12_EditorActionList_AddMapProperty.Title=Property
+
+FileSeamComponent20_Rename.WindowTitle=Rename
+FileSeamComponent20_Rename.Title=File Seam Component 2.0
+
+FileSeamComponent20_AddProperty.WindowTitle=Add Simple Property
+FileSeamComponent20_AddProperty.Title=Property
+
+FileSeamComponent20_AddListProperty.WindowTitle=Add List Property
+FileSeamComponent20_AddListProperty.Title=Property
+
+FileSeamComponent20_AddMapProperty.WindowTitle=Add Map Property
+FileSeamComponent20_AddMapProperty.Title=Property
+
+FileSeamComponent20_Properties.WindowTitle=Properties
+FileSeamComponent20_Properties.Title=File Seam Component 2.0
+
+FileSeamComponent20_EditorActionList_AddProperty.WindowTitle=Add Simple Property
+FileSeamComponent20_EditorActionList_AddProperty.Title=Property
+
+FileSeamComponent20_EditorActionList_AddListProperty.WindowTitle=Add List Property
+FileSeamComponent20_EditorActionList_AddListProperty.Title=Property
+
+FileSeamComponent20_EditorActionList_AddMapProperty.WindowTitle=Add Map Property
+FileSeamComponent20_EditorActionList_AddMapProperty.Title=Property
+
+FileSeamComponents11_Rename.WindowTitle=Rename
+FileSeamComponents11_Rename.Title=File Seam Components 1.1
+
+FileSeamComponents11_AddComponent.WindowTitle=Add Component
+FileSeamComponents11_AddComponent.Title=Seam Component
+
+FileSeamComponents11_AddFactory.WindowTitle=Add Factory
+FileSeamComponents11_AddFactory.Title=Seam Factory
+
+FileSeamComponents11_AddEvent.WindowTitle=Add Event
+FileSeamComponents11_AddEvent.Title=Seam Event
+
+FileSeamComponents11_Properties.WindowTitle=Properties
+FileSeamComponents11_Properties.Title=File Seam Component 1.1
+
+FileSeamComponents11_EditorActionList_AddComponent.WindowTitle=Add Component
+FileSeamComponents11_EditorActionList_AddComponent.Title=Seam Component
+
+FileSeamComponents11_EditorActionList_AddFactory.WindowTitle=Add Factory
+FileSeamComponents11_EditorActionList_AddFactory.Title=Seam Factory
+
+FileSeamComponents11_EditorActionList_AddEvent.WindowTitle=Add Event
+FileSeamComponents11_EditorActionList_AddEvent.Title=Seam Event
+
+FileSeamComponents12_Rename.WindowTitle=Rename
+FileSeamComponents12_Rename.Title=File Seam Components 1.2
+
+FileSeamComponents12_AddComponent.WindowTitle=Add Component
+FileSeamComponents12_AddComponent.Title=Seam Component
+
+FileSeamComponents12_AddFactory.WindowTitle=Add Factory
+FileSeamComponents12_AddFactory.Title=Seam Factory
+
+FileSeamComponents12_AddEvent.WindowTitle=Add Event
+FileSeamComponents12_AddEvent.Title=Seam Event
+
+FileSeamComponents12_EditorActionList_AddComponent.WindowTitle=Add Component
+FileSeamComponents12_EditorActionList_AddComponent.Title=Seam Component
+
+FileSeamComponents12_EditorActionList_AddFactory.WindowTitle=Add Factory
+FileSeamComponents12_EditorActionList_AddFactory.Title=Seam Factory
+
+FileSeamComponents12_EditorActionList_AddEvent.WindowTitle=Add Event
+FileSeamComponents12_EditorActionList_AddEvent.Title=Seam Event
+
+FileSeamComponents20_Rename.WindowTitle=Rename
+FileSeamComponents20_Rename.Title=File Seam Components 2.0
+
+FileSeamComponents20_AddComponent.WindowTitle=Add Component
+FileSeamComponents20_AddComponent.Title=Seam Component
+
+FileSeamComponents20_AddFactory.WindowTitle=Add Factory
+FileSeamComponents20_AddFactory.Title=Seam Factory
+
+FileSeamComponents20_AddEvent.WindowTitle=Add Event
+FileSeamComponents20_AddEvent.Title=Seam Event
+
+FileSeamComponents20_AddImport.WindowTitle=Add Import
+FileSeamComponents20_AddImport.Title=Seam Import
+
+FileSeamComponents20_Properties.WindowTitle=Properties
+FileSeamComponents20_Properties.Title=File Seam Components 2.0
+
+FileSeamComponents20_EditorActionList_AddComponent.WindowTitle=Add Component
+FileSeamComponents20_EditorActionList_AddComponent.Title=Seam Component
+
+FileSeamComponents20_EditorActionList_AddFactory.WindowTitle=Add Factory
+FileSeamComponents20_EditorActionList_AddFactory.Title=Seam Factory
+
+FileSeamComponents20_EditorActionList_AddEvent.WindowTitle=Add Event
+FileSeamComponents20_EditorActionList_AddEvent.Title=Seam Event
+
+FileSeamComponents20_EditorActionList_AddImport.WindowTitle=Add Import
+FileSeamComponents20_EditorActionList_AddImport.Title=Seam Import
+
+SeamAction_Properties.WindowTitle=Properties
+SeamAction_Properties.Title=Seam Action
+
+SeamAction20_Properties.WindowTitle=Properties
+SeamAction20_Properties.Title=Seam Action
+
+SeamComponent_AddProperty.WindowTitle=Add Simple Property
+SeamComponent_AddProperty.Title=Property
+
+SeamComponent_AddListProperty.WindowTitle=Add List Property
+SeamComponent_AddListProperty.Title=Property
+
+SeamComponent_AddMapProperty.WindowTitle=Add Map Property
+SeamComponent_AddMapProperty.Title=Property
+
+SeamComponent_Properties.WindowTitle=Properties
+SeamComponent_Properties.Title=Seam Component
+
+SeamEvent_AddAction.WindowTitle=Add Action
+SeamEvent_AddAction.Title=Seam Action
+
+SeamEvent_Properties.WindowTitle=Properties
+SeamEvent_Properties.Title=Seam Event
+
+SeamEvent20_AddAction.WindowTitle=Add Action
+SeamEvent20_AddAction.Title=Action
+
+SeamEvent20_Properties.WindowTitle=Properties
+SeamEvent20_Properties.Title=Seam Event
+
+SeamFactory_Properties.WindowTitle=Properties
+SeamFactory_Properties.Title=Seam Factory
+
+SeamFactory20_Properties.WindowTitle=Properties
+SeamFactory20_Properties.Title=Seam Factory
+
+SeamImport_Properties.WindowTitle=Properties
+SeamImport_Properties.Title=Seam Import
+
+SeamListEntry_Properties.WindowTitle=Properties
+SeamListEntry_Properties.Title=Seam List Entry
+
+SeamMapEntry_Properties.WindowTitle=Properties
+SeamMapEntry_Properties.Title=Seam Map Entry
+
+SeamProperty_Properties.WindowTitle=Properties
+SeamProperty_Properties.Title=Seam Property
+
+SeamPropertyList_AddEntry.WindowTitle=Add Entry
+SeamPropertyList_AddEntry.Title=Entry
+
+SeamPropertyList_Properties.WindowTitle=Properties
+SeamPropertyList_Properties.Title=Seam Property List
+
+SeamPropertyMap_AddEntry.WindowTitle=Add Entry
+SeamPropertyMap_AddEntry.Title=Entry
+
+SeamPropertyMap_Properties.WindowTitle=Properties
+SeamPropertyMap_Properties.Title=Seam Property Map
+
+FileFolder_CreateFileSeamComponents_0.WindowTitle=New Seam Components
+FileFolder_CreateFileSeamComponents_0.Title=Seam Components File
+
+FileSystemFolder_CreateFileSeamComponents_0.WindowTitle=New Seam Components
+FileSystemFolder_CreateFileSeamComponents_0.Title=Seam Components File
+
+SeamCoreActor_Properties.WindowTitle=Properties
+SeamCoreActor_Properties.Title=Seam Core Actor
+
+SeamCoreBundleNames_AddEntry.WindowTitle=Add Entry
+SeamCoreBundleNames_AddEntry.Title=Entry
+
+SeamCoreBundleNames_Properties.WindowTitle=Properties
+SeamCoreBundleNames_Properties.Title=Seam Core Bundle Names
+
+SeamCoreDispatcher_Properties.WindowTitle=Properties
+SeamCoreDispatcher_Properties.Title=Seam Core Dispatcher
+
+SeamCoreEJB_Properties.WindowTitle=Properties
+SeamCoreEJB_Properties.Title=Seam Core EJB
+
+SeamCoreEntityManagerFactory_Properties.WindowTitle=Properties
+SeamCoreEntityManagerFactory_Properties.Title=Seam Core Entity Manager Factory
+
+SeamCoreFilter_Properties.WindowTitle=Properties
+SeamCoreFilter_Properties.Title=Seam Core Filter
+
+SeamCoreFilters_AddEntry.WindowTitle=Add Entry
+SeamCoreFilters_AddEntry.Title=Entry
+
+SeamCoreFilters_Properties.WindowTitle=Properties
+SeamCoreFilters_Properties.Title=Seam Core Filters
+
+SeamCoreInit_Properties.WindowTitle=Properties
+SeamCoreInit_Properties.Title=Seam Core Init
+
+SeamCoreJBPM_Properties.WindowTitle=Properties
+SeamCoreJBPM_Properties.Title=Seam Core JBPM
+
+SeamCoreLocaleSelector_Properties.WindowTitle=Properties
+SeamCoreLocaleSelector_Properties.Title=Seam Core Locale Selector
+
+SeamCoreManagedPersistenceContext_Properties.WindowTitle=Properties
+SeamCoreManagedPersistenceContext_Properties.Title=Seam Core Managed Persistence Context
+
+SeamCoreManager_Properties.WindowTitle=Properties
+SeamCoreManager_Properties.Title=Seam Core Manager
+
+SeamCoreMicrocontainer_Properties.WindowTitle=Properties
+SeamCoreMicrocontainer_Properties.Title=Seam Core Microcontainer
+
+SeamCorePageflowDefinitions_AddEntry.WindowTitle=Add Entry
+SeamCorePageflowDefinitions_AddEntry.Title=Entry
+
+SeamCorePageflowDefinitions_Properties.WindowTitle=Properties
+SeamCorePageflowDefinitions_Properties.Title=Seam Core Pageflow Definitions
+
+SeamCorePages_Properties.WindowTitle=Properties
+SeamCorePages_Properties.Title=Seam Core Pages
+
+SeamCoreParameters_AddEntry.WindowTitle=Add Entry
+SeamCoreParameters_AddEntry.Title=Entry
+
+SeamCoreParameters_Properties.WindowTitle=Properties
+SeamCoreParameters_Properties.Title=Seam Core Parameters
+
+SeamCorePersistenceUnitProperties_AddEntry.WindowTitle=Add Entry
+SeamCorePersistenceUnitProperties_AddEntry.Title=Entry
+
+SeamCorePersistenceUnitProperties_Properties.WindowTitle=Properties
+SeamCorePersistenceUnitProperties_Properties.Title=Seam Core Persistence Unit
+
+SeamCorePojoCache_Properties.WindowTitle=Properties
+SeamCorePojoCache_Properties.Title=Seam Core POJO Cache
+
+SeamCoreProcessDefinitions_AddEntry.WindowTitle=Add Entry
+SeamCoreProcessDefinitions_AddEntry.Title=Entry
+
+SeamCoreProcessDefinitions_Properties.WindowTitle=Properties
+SeamCoreProcessDefinitions_Properties.Title=Seam Core Process Definitions
+
+SeamCoreResourceBundle_Properties.WindowTitle=Properties
+SeamCoreResourceBundle_Properties.Title=Seam Core Resource Bundle
+
+SeamCoreTimeZoneSelector_Properties.WindowTitle=Properties
+SeamCoreTimeZoneSelector_Properties.Title=Seam Core TimeZone Selector
+
+SeamCoreTransactionListener_Properties.WindowTitle=Properties
+SeamCoreTransactionListener_Properties.Title=Seam Core Transaction Listener
+
+FileSeamComponents12_AddActor.WindowTitle=Add Actor
+FileSeamComponents12_AddActor.Title=Actor
+
+FileSeamComponents12_AddDispatcher.WindowTitle=Add Dispatcher
+FileSeamComponents12_AddDispatcher.Title=Dispatcher
+
+FileSeamComponents12_AddTransactionListener.WindowTitle=Add Transaction Listener
+FileSeamComponents12_AddTransactionListener.Title=Transaction Listener
+
+FileSeamComponents12_AddEJB.WindowTitle=Add EJB
+FileSeamComponents12_AddEJB.Title=EJB
+
+FileSeamComponents12_AddInit.WindowTitle=Add Init
+FileSeamComponents12_AddInit.Title=Init
+
+FileSeamComponents12_AddJBPM.WindowTitle=Add JBPM
+FileSeamComponents12_AddJBPM.Title=JBPM
+
+FileSeamComponents12_AddLocaleSelector.WindowTitle=Add Locale Selector
+FileSeamComponents12_AddLocaleSelector.Title=Locale Selector
+
+FileSeamComponents12_AddManager.WindowTitle=Add Manager
+FileSeamComponents12_AddManager.Title=Manager
+
+FileSeamComponents12_AddMicrocontainer.WindowTitle=Add Microcontainer
+FileSeamComponents12_AddMicrocontainer.Title=Microcontainer
+
+FileSeamComponents12_AddPages.WindowTitle=Add Pages
+FileSeamComponents12_AddPages.Title=Pages
+
+FileSeamComponents12_AddPojoCache.WindowTitle=Add POJO Cache
+FileSeamComponents12_AddPojoCache.Title=POJO Cache
+
+FileSeamComponents12_AddResourceBundle.WindowTitle=Add Resource Bundle
+FileSeamComponents12_AddResourceBundle.Title=Resource Bundle
+
+FileSeamComponents12_AddTimeZoneSelector.WindowTitle=Add Time Zone Selector
+FileSeamComponents12_AddTimeZoneSelector.Title=Time Zone Selector
+
+FileSeamComponents12_AddManagedPersistenceContext.WindowTitle=Add Managed Persistence Context
+FileSeamComponents12_AddManagedPersistenceContext.Title=Managed Persistence Context
+
+FileSeamComponents12_AddEntityManagerFactory.WindowTitle=Add Entity Manager Factory
+FileSeamComponents12_AddEntityManagerFactory.Title=Entity Manager Factory
+
+FileSeamComponents12_AddFilter.WindowTitle=Add Filter
+FileSeamComponents12_AddFilter.Title=Filter
+
+FileSeamComponents12_EditorActionList_AddActor.WindowTitle=Add Actor
+FileSeamComponents12_EditorActionList_AddActor.Title=Actor
+
+FileSeamComponents12_EditorActionList_AddDispatcher.WindowTitle=Add Dispatcher
+FileSeamComponents12_EditorActionList_AddDispatcher.Title=Dispatcher
+
+FileSeamComponents12_EditorActionList_AddTransactionListener.WindowTitle=Add Transaction Listener
+FileSeamComponents12_EditorActionList_AddTransactionListener.Title=Transaction Listener
+
+FileSeamComponents12_EditorActionList_AddEJB.WindowTitle=Add EJB
+FileSeamComponents12_EditorActionList_AddEJB.Title=EJB
+
+FileSeamComponents12_EditorActionList_AddInit.WindowTitle=Add Init
+FileSeamComponents12_EditorActionList_AddInit.Title=Init
+
+FileSeamComponents12_EditorActionList_AddJBPM.WindowTitle=Add JBPM
+FileSeamComponents12_EditorActionList_AddJBPM.Title=JBPM
+
+FileSeamComponents12_EditorActionList_AddLocaleSelector.WindowTitle=Add Locale Selector
+FileSeamComponents12_EditorActionList_AddLocaleSelector.Title=Locale Selector
+
+FileSeamComponents12_EditorActionList_AddManager.WindowTitle=Add Manager
+FileSeamComponents12_EditorActionList_AddManager.Title=Manager
+
+FileSeamComponents12_EditorActionList_AddMicrocontainer.WindowTitle=Add Microcontainer
+FileSeamComponents12_EditorActionList_AddMicrocontainer.Title=Microcontainer
+
+FileSeamComponents12_EditorActionList_AddPages.WindowTitle=Add Pages
+FileSeamComponents12_EditorActionList_AddPages.Title=Pages
+
+FileSeamComponents12_EditorActionList_AddPojoCache.WindowTitle=Add POJO Cache
+FileSeamComponents12_EditorActionList_AddPojoCache.Title=POJO Cache
+
+FileSeamComponents12_EditorActionList_AddResourceBundle.WindowTitle=Add Resource Bundle
+FileSeamComponents12_EditorActionList_AddResourceBundle.Title=Resource Bundle
+
+FileSeamComponents12_EditorActionList_AddTimeZoneSelector.WindowTitle=Add Time Zone Selector
+FileSeamComponents12_EditorActionList_AddTimeZoneSelector.Title=Time Zone Selector
+
+FileSeamComponents12_EditorActionList_AddManagedPersistenceContext.WindowTitle=Add Managed Persistence Context
+FileSeamComponents12_EditorActionList_AddManagedPersistenceContext.Title=Managed Persistence Context
+
+FileSeamComponents12_EditorActionList_AddEntityManagerFactory.WindowTitle=Add Entity Manager Factory
+FileSeamComponents12_EditorActionList_AddEntityManagerFactory.Title=Entity Manager Factory
+
+FileSeamComponents12_EditorActionList_AddFilter.WindowTitle=Add Filter
+FileSeamComponents12_EditorActionList_AddFilter.Title=Filter
+
+SeamDroolsManagedWorkingMemory_Properties.WindowTitle=Properties
+SeamDroolsManagedWorkingMemory_Properties.Title=Seam Drools Managed Working Memory
+
+SeamDroolsRuleBase_Properties.WindowTitle=Properties
+SeamDroolsRuleBase_Properties.Title=Seam Drools Rule Base
+
+SeamDroolsRuleFiles_AddEntry.WindowTitle=Add Entry
+SeamDroolsRuleFiles_AddEntry.Title=Entry
+
+SeamDroolsRuleFiles_Properties.WindowTitle=Properties
+SeamDroolsRuleFiles_Properties.Title=Seam Drools Rule Files
+
+FileSeamComponents12_AddManagedWorkingMemory.WindowTitle=Add Managed Working Memory
+FileSeamComponents12_AddManagedWorkingMemory.Title=Managed Working Memory
+
+FileSeamComponents12_AddRuleBase.WindowTitle=Add Rule Base
+FileSeamComponents12_AddRuleBase.Title=Rule Base
+
+FileSeamComponents12_EditorActionList_AddManagedWorkingMemory.WindowTitle=Add Managed Working Memory
+FileSeamComponents12_EditorActionList_AddManagedWorkingMemory.Title=Managed Working Memory
+
+FileSeamComponents12_EditorActionList_AddRuleBase.WindowTitle=Add Rule Base
+FileSeamComponents12_EditorActionList_AddRuleBase.Title=Rule Base
+
+SeamFrameworkEntityHome_Properties.WindowTitle=Properties
+SeamFrameworkEntityHome_Properties.WindowTitle=Seam Framework Entity Home
+
+SeamFrameworkEntityQuery_Properties.WindowTitle=Properties
+SeamFrameworkEntityQuery_Properties.WindowTitle=Seam Framework Entity Query
+
+SeamFrameworkHibernateEntityHome_Properties.WindowTitle=Properties
+SeamFrameworkHibernateEntityHome_Properties.WindowTitle=Seam Framework Hibernate Entity Home
+
+SeamFrameworkHibernateEntityQuery_Properties.WindowTitle=Properties
+SeamFrameworkHibernateEntityQuery_Properties.WindowTitle=Seam Framework Hibernate Entity Query
+
+SeamFrameworkHints_AddEntry.WindowTitle=Add Entry
+SeamFrameworkHints_AddEntry.Title=Entry
+
+SeamFrameworkHints_Properties.WindowTitle=Properties
+SeamFrameworkHints_Properties.Title=Seam Framework Hints
+
+SeamFrameworkRestrictions_AddEntry.WindowTitle=Add Entry
+SeamFrameworkRestrictions_AddEntry.Title=Entry
+
+SeamFrameworkRestrictions_Properties.WindowTitle=Properties
+SeamFrameworkRestrictions_Properties.Title=Seam Framework Restrictions
+
+FileSeamComponents12_AddEntityQuery.WindowTitle=Add Entity Query
+FileSeamComponents12_AddEntityQuery.Title=Entity Query
+
+FileSeamComponents12_AddHibernateEntityQuery.WindowTitle=Add Hibernate Entity Query
+FileSeamComponents12_AddHibernateEntityQuery.Title=Hibernate Entity Query
+
+FileSeamComponents12_AddEntityHome.WindowTitle=Add Entity Home
+FileSeamComponents12_AddEntityHome.Title=Entity Home
+
+FileSeamComponents12_AddHibernateEntityHome.WindowTitle=Add Hibernate Entity Home
+FileSeamComponents12_AddHibernateEntityHome.Title=Hibernate Entity Home
+
+FileSeamComponents12_EditorActionList_AddEntityQuery.WindowTitle=Add Entity Query
+FileSeamComponents12_EditorActionList_AddEntityQuery.Title=Entity Query
+
+FileSeamComponents12_EditorActionList_AddHibernateEntityQuery.WindowTitle=Add Hibernate Entity Query
+FileSeamComponents12_EditorActionList_AddHibernateEntityQuery.Title=Hibernate Entity Query
+
+FileSeamComponents12_EditorActionList_AddEntityHome.WindowTitle=Add Entity Home
+FileSeamComponents12_EditorActionList_AddEntityHome.Title=Entity Home
+
+FileSeamComponents12_EditorActionList_AddHibernateEntityHome.WindowTitle=Add Hibernate Entity Home
+FileSeamComponents12_EditorActionList_AddHibernateEntityHome.Title=Hibernate Entity Home
+
+SeamJmsQueueConnection_Properties.WindowTitle=Properties
+SeamJmsQueueConnection_Properties.Title=Seam JMS Queue Connection
+
+SeamJmsQueueSender_Properties.WindowTitle=Properties
+SeamJmsQueueSender_Properties.Title=Seam JMS Queue Sender
+
+SeamJmsTopicConnection_Properties.WindowTitle=Properties
+SeamJmsTopicConnection_Properties.Title=Seam JMS Topic Connection
+
+SeamJmsTopicPublisher_Properties.WindowTitle=Properties
+SeamJmsTopicPublisher_Properties.Title=Seam JMS Topic Publisher
+
+FileSeamComponents12_AddQueueConnection.WindowTitle=Add Queue Connection
+FileSeamComponents12_AddQueueConnection.Title=Queue Connection
+
+FileSeamComponents12_AddTopicConnection.WindowTitle=Add Topic Connection
+FileSeamComponents12_AddTopicConnection.Title=Topic Connection
+
+FileSeamComponents12_AddTopicPublisher.WindowTitle=Add Managed Topic Publisher
+FileSeamComponents12_AddTopicPublisher.Title=Managed Topic Publisher
+
+FileSeamComponents12_AddQueueSender.WindowTitle=Add Managed Queue Sender
+FileSeamComponents12_AddQueueSender.Title=Managed Queue Sender
+
+FileSeamComponents12_EditorActionList_AddQueueConnection.WindowTitle=Add Queue Connection
+FileSeamComponents12_EditorActionList_AddQueueConnection.Title=Queue Connection
+
+FileSeamComponents12_EditorActionList_AddTopicConnection.WindowTitle=Add Topic Connection
+FileSeamComponents12_EditorActionList_AddTopicConnection.Title=Topic Connection
+
+FileSeamComponents12_EditorActionList_AddTopicPublisher.WindowTitle=Add Managed Topic Publisher
+FileSeamComponents12_EditorActionList_AddTopicPublisher.Title=Managed Topic Publisher
+
+FileSeamComponents12_EditorActionList_AddQueueSender.WindowTitle=Add Managed Queue Sender
+FileSeamComponents12_EditorActionList_AddQueueSender.Title=Managed Queue Sender
+
+SeamMailSession_Properties.WindowTitle=Properties
+SeamMailSession_Properties.Title=Seam Mail Session
+
+FileSeamComponents12_AddMailSession.WindowTitle=Add Mail Session
+FileSeamComponents12_AddMailSession.Title=Mail Session
+
+FileSeamComponents12_EditorActionList_AddMailSession.WindowTitle=Add Mail Session
+FileSeamComponents12_EditorActionList_AddMailSession.Title=Mail Session
+
+SeamPdfDocumentStore_Properties.WindowTitle=Properties
+SeamPdfDocumentStore_Properties.Title=Seam PDF Document Store
+
+SeamPdfKeyStoreConfig_Properties.WindowTitle=Properties
+SeamPdfKeyStoreConfig_Properties.Title=Seam PDF Key Store Config
+
+FileSeamComponents12_AddDocumentStore.WindowTitle=Add Document Store
+FileSeamComponents12_AddDocumentStore.Title=Document Store
+
+FileSeamComponents12_AddKeyStoreConfig.WindowTitle=Add Key Store Config
+FileSeamComponents12_AddKeyStoreConfig.Title=Key Store Config
+
+FileSeamComponents12_EditorActionList_AddDocumentStore.WindowTitle=Add Document Store
+FileSeamComponents12_EditorActionList_AddDocumentStore.Title=Document Store
+
+FileSeamComponents12_EditorActionList_AddKeyStoreConfig.WindowTitle=Add Key Store Config
+FileSeamComponents12_EditorActionList_AddKeyStoreConfig.Title=Key Store Config
+
+SeamRemotingConfig_Properties.WindowTitle=Properties
+SeamRemotingConfig_Properties.Title=Seam Remoting Config
+
+FileSeamComponents12_AddRemotingConfig.WindowTitle=Add Remoting Config
+FileSeamComponents12_AddRemotingConfig.Title=Remoting Config
+
+FileSeamComponents12_EditorActionList_AddRemotingConfig.WindowTitle=Add Remoting Config
+FileSeamComponents12_EditorActionList_AddRemotingConfig.Title=Remoting Config
+
+SeamSecurityIdentity_Properties.WindowTitle=Properties
+SeamSecurityIdentity_Properties.Title=Seam Security Identity
+
+FileSeamComponents12_AddIdentity.WindowTitle=Add Identity
+FileSeamComponents12_AddIdentity.Title=Identity
+
+FileSeamComponents12_EditorActionList_AddIdentity.WindowTitle=Add Identity
+FileSeamComponents12_EditorActionList_AddIdentity.Title=Identity
+
+SeamSpringConfigLocations_AddEntry.WindowTitle=Add Entry
+SeamSpringConfigLocations_AddEntry.Title=Entry
+
+SeamSpringConfigLocations_Properties.WindowTitle=Properties
+SeamSpringConfigLocations_Properties.Title=Seam Spring Config Locations
+
+SeamSpringContextLoader_Properties.WindowTitle=Properties
+SeamSpringContextLoader_Properties.Title=Seam Spring Context Loader
+
+FileSeamComponents12_AddContextLoader.WindowTitle=Add Context Loader
+FileSeamComponents12_AddContextLoader.Title=Context Loader
+
+FileSeamComponents12_EditorActionList_AddContextLoader.WindowTitle=Add Context Loader
+FileSeamComponents12_EditorActionList_AddContextLoader.Title=Context Loader
+
+SeamThemeAvailableThemes_AddEntry.WindowTitle=Add Entry
+SeamThemeAvailableThemes_AddEntry.Title=Entry
+
+SeamThemeAvailableThemes_Properties.WindowTitle=Properties
+SeamThemeAvailableThemes_Properties.Title=Seam Available Themes
+
+SeamThemeSelector_Properties.WindowTitle=Properties
+SeamThemeSelector_Properties.Title=Theme Selector
+
+FileSeamComponents12_AddThemeSelector.WindowTitle=Add Theme Selector
+FileSeamComponents12_AddThemeSelector.Title=Theme Selector
+
+FileSeamComponents12_EditorActionList_AddThemeSelector.WindowTitle=Add Theme Selector
+FileSeamComponents12_EditorActionList_AddThemeSelector.Title=Theme Selector
+
+SeamWebContextFilter_Properties.WindowTitle=Properties
+SeamWebContextFilter_Properties.Title=Seam Web Context Filter
+
+SeamWebExceptionFilter_Properties.WindowTitle=Properties
+SeamWebExceptionFilter_Properties.Title=Seam Web Exception Filter
+
+SeamWebMultipartFilter_Properties.WindowTitle=Properties
+SeamWebMultipartFilter_Properties.Title=Seam Web Multipart Filter
+
+SeamWebRedirectFilter_Properties.WindowTitle=Properties
+SeamWebRedirectFilter_Properties.Title=Seam Web Redirect Filter
+
+FileSeamComponents12_AddContextFilter.WindowTitle=Add Context Filter
+FileSeamComponents12_AddContextFilter.Title=Context Filter
+
+FileSeamComponents12_AddExceptionFilter.WindowTitle=Add Exception Filter
+FileSeamComponents12_AddExceptionFilter.Title=Exception Filter
+
+FileSeamComponents12_AddMultipartFilter.WindowTitle=Add Multipart Filter
+FileSeamComponents12_AddMultipartFilter.Title=Multipart Filter
+
+FileSeamComponents12_AddRedirectFilter.WindowTitle=Add Redirect Filter
+FileSeamComponents12_AddRedirectFilter.Title=Redirect Filter
+
+FileSeamComponents12_EditorActionList_AddContextFilter.WindowTitle=Add Context Filter
+FileSeamComponents12_EditorActionList_AddContextFilter.Title=Context Filter
+
+FileSeamComponents12_EditorActionList_AddExceptionFilter.WindowTitle=Add Exception Filter
+FileSeamComponents12_EditorActionList_AddExceptionFilter.Title=Exception Filter
+
+FileSeamComponents12_EditorActionList_AddMultipartFilter.WindowTitle=Add Multipart Filter
+FileSeamComponents12_EditorActionList_AddMultipartFilter.Title=Multipart Filter
+
+FileSeamComponents12_EditorActionList_AddRedirectFilter.WindowTitle=Add Redirect Filter
+FileSeamComponents12_EditorActionList_AddRedirectFilter.Title=Redirect Filter
17 years, 1 month
JBoss Tools SVN: r4917 - in trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui.veditor: icons and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: mdryakhlenkov
Date: 2007-11-15 09:38:05 -0500 (Thu, 15 Nov 2007)
New Revision: 4917
Added:
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui.veditor/icons/hibernate_small_icon.gif
Removed:
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui.veditor/icons/sample.gif
Modified:
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui.veditor/plugin.xml
Log:
JBIDE-1321: Hibernate diagram view has eclipse icon
Added: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui.veditor/icons/hibernate_small_icon.gif
===================================================================
(Binary files differ)
Property changes on: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui.veditor/icons/hibernate_small_icon.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Deleted: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui.veditor/icons/sample.gif
===================================================================
(Binary files differ)
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui.veditor/plugin.xml
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui.veditor/plugin.xml 2007-11-15 14:27:01 UTC (rev 4916)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui.veditor/plugin.xml 2007-11-15 14:38:05 UTC (rev 4917)
@@ -6,7 +6,7 @@
<editor
class="org.jboss.tools.hibernate.ui.veditor.editors.VisualEditor"
contributorClass="org.jboss.tools.hibernate.ui.veditor.editors.EditorActionContributor"
- icon="icons/sample.gif"
+ icon="icons/hibernate_small_icon.gif"
id="org.jboss.tools.hibernate.ui.veditor.editors.visualeditor"
name="Hibernate Diagram Viewer">
</editor>
17 years, 1 month