As I’ve highlighted previously on this blog I’ve done quite a lot of work on LiveText to Java integration in my How to extend Notes 8-series. This week IBM contributed a sample on OpenNTF showing of the same thing – the project is New OpenNTF Sample: Eclipse Live Text Action. I recommend you take a look at the project as well as my series of blog entries for information on how to extend the Notes client yourself.
Tag: extending_notes8
How to extend Notes 8: New version of the demo application
I just posted an update to the demo application for my Extending Notes 8 series of posts. The demo application is discussed in more detail in my previous post (How to extend Notes 8: LiveText demo application). The issue was that I had a button to create a demo e-mail in the UI which made the plugin depend on the Notes Java UI API which was added in Notes 8.5.1 and hence meant that the demo application wasn’t installable on previous Notes versions… 😦
To remedy that I built an new version where the button using the offending API is added from an Eclipse plugin fragment and using a custom extension point (if you’re running Notes 8.5.1+). More on that approach at a later date. For now you may install the new version using the updated widget descriptor (extension.xml) (simply drag the link to your MyWidgets sidebar plugin).
If you do an update – which there’s absolutely no reason to if it already works for you – the only way to tell is by verifying that the version number at the bottom of the sidebar application is changed to 1.0.1.
That’s all for this post. All the posts in the series may be found under the extending_notes8 tag.
How to extend Notes 8: LiveText demo application
The day before yesterday I posted the first summary post in my Extending Notes 8 series with a complete end-to-end approach to dynamically adding LiveTex recognizers. As part of that post I uploaded a demo application (plugin) but I didn’t add a screenshot so I thought I’d remedy that.
As you can see the plugin has a small welcome text and two buttons. You’ll also see a textbox to hold any exception (not that I’m expecting any) that might be raised as part of adding the recognizer and content type. You may use the two buttons to easily create a demo e-mail for use with the added LiveText stuff. The left button creates the e-mail in the UI (using the new handy Java UI classes) and the right one simply sends the e-mail to you in the backend. The latter is very handy for testing as the e-mail needs to be in read mode for the LiveText sub-system to kick in.
I’ve put a compiled version of the plugin on my update site and tthe plugin may be installed by dragging this extension.xml file to your MyWidgets sidebar panel (policy permitting).
That’s all for this post. All the posts in the series may be found under the extending_notes8 tag.
How to extend Notes 8: case insensitive LiveText patterns
When you start to do a lot of LiveText recognizers you find yourself wanting to do more advanced stuff with your regular expressions. For instance you might want to do case insensitive patterns or use some of the others regular expression modifiers. This post will show you how to do this.
By default the regular expressions you specify for your recognizers are case sensitive. This is normally fine unless you really want it to be case insensitive. Since the LiveText engine is in Java you may use the supported Java modifiers for your regular expressions. Normally the modifiers are specified when you “compile the pattern” in Java (java.util.regex.Pattern.compile(pattern, modifiers)) but as you don’t have access to this process you can’t do that.
There is however another way…
You can embed some modifiers in the pattern such as Pattern.MULTILINE, Pattern.UNICODE_CASE, Pattern.DOTALL and most of all Pattern.CASE_INSENSITIVE! You embed the modifier in the start of the pattern. So instead of doing a case insensitive pattern like this (to recognizer “lotus” and “Lotus”):
[Ll]otus
you do
(?i)lotus
Cool isn’t it?
The following modifiers are supported in Java though not all makes sense for LiveText:
- Pattern.CASE_INSENSITIVE = (?i)
- Pattern.MULTILINE = (?m)
- Pattern.DOTALL = (?s)
- Pattern.UNICODE_CASE = (?u)
Please bear in mind that it probably only makes sense to use DOTALL and CASE_INSENSITIVE.
That’s all for this post. All the posts in the series may be found under the extending_notes8 tag.
How to extend Notes 8: dynamic LiveText recognizers using Java
As I briefly described in my last post (“How to extend Notes 8: dynamic extensions using Java“) it’s possible to create new extensions to Lotus Notes using Java and hence inject functionality into the client dynamically. It’s very cool functionality and it allows you to inject anything from content types and recognizers to sidebar panels.
In this post I’ll build on three previous posts and show you how to use dynamic extensions in Lotus Notes in combination with a Java action that uses multiple capture groups for an end-to-end solution that may be deployed as a single Java extension (aka plugin). The result is a plugin that may be deployed to a client workstations which allows you to act on text recognized by the LiveText sub-system but where you have the power of Java for processing.
All the posts in the series may be found under the extending_notes8 tag.
We need three pieces of information:
- The code to dynamically inject our custom recognizer and content type into Lotus Notes without the need for an extension.xml file. This is what the LiveText sub-system uses to highlight the text for us.
- The Java action to act on the LiveText selection.
- The plugin.xml file to bind it all together.
The first piece is the code that injects the custom recognizer and content type under a known id. This code may be run in lots of ways but to make it easy for this example I choose a sidebar panel. Below is the createPartControl-method from that class.
public void createPartControl(final Composite parent) { try { // define XML final String extensionXml = ...; // get extension registry and load extension // into registry final IExtensionRegistry reg = Platform.getExtensionRegistry(); InputStream ins = new ByteArrayInputStream(extensionXml.getBytes()); Bundle bundle = Activator.getDefault().getBundle(); IContributor contr = ContributorFactoryOSGi.createContributor(bundle); reg.addContribution(ins, contr, false, null, null, null); } catch (Throwable t) { t.printStackTrace(); } }
The above code injects the recognizer and content type with an id of DCCT.ExampleContentType.1234567890 into the client.
The next part we need is the action class (again implementing org.eclipse.ui.IObjectActionDelegate) to act on the LiveText selection. Most of the code you’ve seen before in a previous post but again it goes and get the text from the underlying document as document properties.
public void selectionChanged(IAction action, ISelection selection) { IDocumentContent doc = null; // cast/adapt selection if (selection instanceof StructuredSelection) { Object sel = ((StructuredSelection)selection).getFirstElement(); if (sel instanceof IDocumentContent) { doc = (IDocumentContent)sel; } } else if (selection instanceof IDocumentContent) { doc = (IDocumentContent)selection; } else { // try and adapt IAdapterManager amgr = Platform.getAdapterManager(); doc = (IDocumentContent)amgr.getAdapter(selection, IDocumentContent.class); } if (null == doc) { this.contents = null; this.prodFamily = null; this.partNumber = null; return; } // get data from document property this.contents = doc.getProperties().getProperty("contents"); this.prodFamily = doc.getProperties().getProperty("pf"); this.partNumber = doc.getProperties().getProperty("pn"); }
The last piece is the plugin.xml to put it all together using the org.eclipse.ui.popupMenus extension point. Notice how we use the content type id we know (bold text below) from our dynamically deployed content type.
<extension point="org.eclipse.ui.popupMenus"> <objectContribution id="com.lekkimworld.extnotes8.dynext.objCtr1" objectClass="com.ibm.rcp.content.IDocumentContent"> <visibility> <and> <objectState name="content.type" value="DCCT.ExampleContentType.1234567890"> </objectState> <objectState name="contents" value="*"> </objectState> </and> </visibility> <action class="com.lekkimworld.extnotes8.dynext.MyAction" enablesFor="*" id="com.lekkimworld.extnotes8.dynext.action1" label="Do me!"> </action> </objectContribution> </extension>
The result when deployed to a Lotus Notes client is something like the screenshot below where you get a Java action to act on a LiveText recognition. Only change this time is that all the functionality is provided from your plugin. No separate extension.xml is necessary for the recognizer or the content type.
That’s how it’s done. I’ve uploaded an Eclipse project to the blog so you can download it and install it in your Eclipse as a demo. You can download the project here.
How to extend Notes 8: dynamic extensions using Java
I get so many question on how to extend Notes 8 that I finally decided to create a series of blog posts on how to do it. All the posts in the series may be found under the extending_notes8 tag. In all of the examples I assume a working knowledge of Eclipse and Java programming and how to work with extension points.
As I briefly mentioned in my last post (“How to extend Notes 8: capture group LiveText recognizers with a Java action“) it’s possible to create new extensions to Lotus Notes using Java and hence inject functionality into the client dynamically. It’s very cool functionality and it allows you to inject anything from content types and recognizers to sidebar panels. I’ve used this a lot previously and also demoed it in my “How dynamic are your Notes sidebar plugins?” demo. Watch the Flash video and see how you can make sidebar panels come and go on demand.
Now on to the code…
The trick to dynamic extensions is to inject extensions into the Extension Registry at runtime. The Extension Registry is where Eclipse reads the plugin contributions from plugin.xml files into at startup. If we inject an extension, and the receiving plugins are set up to handle dynamically adding extensions you are golden. Let me show you have to use the Extension Registry.
final String extensionXml = ...; final IExtensionRegistry reg = Platform.getExtensionRegistry(); InputStream ins = new ByteArrayInputStream(extensionXml.getBytes()); Bundle bundle = Activator.getDefault().getBundle(); IContributor contr = ContributorFactoryOSGi.createContributor(bundle); reg.addContribution(ins, contr, false, null, null, null);
The code does the following:
- Defines the extension XML to add (more on this later).
- Gets the extension registry from the platform.
- Reads the extension XML into an input stream.
- Retrieves the bundle.
- Creates a new contributor that is the object that makes the contribution to the extension registry.
- Adds the contribution to the registry.
So what is the extension XML mentioned above?
The extension XML is the XML that defines the extension you’re adding. It’s actually any piece of XML you would stick in your plugin.xml file either manually or using the UI editor. An example could be a custom recognizer and content type as shown below as a snippet from Java.
final String extensionXml = "<?xml version="1.0" encoding="utf-8" ?>" + "<?eclipse version="3.2"?>" + "<plugin>" + "<extension id="DCR.ExampleRecognizer.%s" point="com.ibm.rcp.annotation.regex.regexTypes">" + "<regexTypes contentTypeId="DCCT.ExampleContentType.%s" id="DCR.ExampleRecognizer.%s" match="([A-Z]{4})-(\d{4})" name="Example Recognizer">" + "<group contentTypePropertyId="pn" number="2"/>" + "<group contentTypePropertyId="pf" number="1"/>" + "<group contentTypePropertyId="contents" number="0"/>" + "</regexTypes>" + "</extension>" + "<extension id="DCCT.ExampleContentType.%s" point="com.ibm.rcp.content.contentTypes">" + "<contentSet>" + "<type category="Recognized Content" id="DCCT.ExampleContentType.%s" name="Example Content Type">" + "<property description="Entire Contents" id="contents"/>" + "<property description="Product Family" id="pf"/>" + "<property description="Part Number" id="pn"/>" + "</type>" + "</contentSet>" + "</extension>" + "</plugin>";
That’s how you do it. Tomorrow I’ll show how to combine it with our custom recognizer and content type to inject it dynamically into the LiveText system in Lotus Notes. Stay tuned…
How to extend Notes 8: capture group LiveText recognizers with a Java action
I get so many question on how to extend Notes 8 that I finally decided to create a series of blog posts on how to do it. All the posts in the series may be found under the extending_notes8 tag. In all of the examples I assume a working knowledge of Eclipse and Java programming and how to work with extension points.
For this post I’ll build on the “How to extend Notes 8: coupling LiveText to a Java action” and “How to extend Notes 8: using LiveText with capture groups” posts and show how to act on your own custom recognizer from a Java action when you have multiple capture groups.
Please note: I’ll assume that you read the “How to extend Notes 8: using LiveText with capture groups” post and have it working as we’ll build on that example in this post. Unfortunately as we act on the content type id you need to find the id of the content type on your system. I’ll show you how.
Enough with preparations – now on to the code!
So far we have our custom recognizer and our custom content type but instead of a web widget we really want to use our Java action as the recipient of the LiveText selection. We couple the Java action to the content type using an extension point in plugin.xml based on the content type id. Let me show you how to find the content type id.
- Start by opening the management UI for widgets, content types and recognizers. You do this by choosing “Manage Widgets, Content and Recognizers” from the part menu in the My Widgets sidebar panel as show below.
- Now switch to the “Content Types” panel and make a note of the ID for the “Demo Product Number” content type. Here the id is “DemoProductNumber.1410710777” as highlighted below.
- Now comes the trick. Notes adds “DCCT.” in front of the id shown so the real id is “DCCT.DemoProductNumber.1410710777”. Make a note of your own id and read on…
As previously the first piece of the puzzle is the extension point. Add an org.eclipse.ui.popupMenus extension as previous and specify the id you noted above as the content type id. Mine is shown below – notice how I use the id prefixed with “DCCT.”.
<?xml version="1.0" encoding="UTF-8"?> <?eclipse version="3.4"?> <plugin> <extension point="org.eclipse.ui.popupMenus"> <objectContribution id="com.lekkimworld.livetxt.objectContr1" objectClass="com.ibm.rcp.content.IDocumentContent"> <visibility> <and> <objectState name="content.type" value="DCCT.DemoProductNumber.1410710777"/> <objectState name="contents" value="" /> </and> </visibility> <action class="com.lekkimworld.livetext.MyAction" enablesFor="*" id="com.lekkimworld.livetxt.action1" label="Do stuff!" /> </objectContribution> </extension> </plugin>
Now create your Java action class – again implemening org.eclipse.ui.IObjectActionDelegate – and specify the correct class name in the extension point.
Again when it comes to grabbing the contents of the recognized LiveText it comes down to you selectionChanged-method of your Java action. As our recognizer uses capture groups we have a few choices for the properties we can grasp from the document. As always the entire recognized product number will be in the “contents” property but we also have “pf” and a “pn” property available that holds the product family and the part number. The example code below shows how to get at these.
public void selectionChanged(IAction action, ISelection selection) { IDocumentContent doc = null; // cast/adapt selection if (selection instanceof StructuredSelection) { Object sel = ((StructuredSelection)selection).getFirstElement(); if (sel instanceof IDocumentContent) { doc = (IDocumentContent)sel; } } else if (selection instanceof IDocumentContent) { doc = (IDocumentContent)selection; } else { // try and adapt IAdapterManager amgr = Platform.getAdapterManager(); doc = (IDocumentContent)amgr.getAdapter(selection, IDocumentContent.class); } if (null == doc) { this.selection = null; return; } // get all recognized content this.prodNumber = doc.getProperties().getProperty("contents"); this.prodFamily = doc.getProperties().getProperty("pf"); this.partNumber = doc.getProperties().getProperty("pn"); }
Now when you install the extension and hence put the pieces together you should see two actions for the product number LiveText recognition as shown below. The top one is our Java action and the bottom one is our web widget from previously.
That’s what is required to act on custom recognizers. As you can probably gather from the above it doesn’t work letting users do their own recognizers and then wanting to act on them from Java due to two reasons – 1) never trust a user to give it the right name as instructed 🙂 and 2) the id of the content type will change from machine as it is generated when the user creates the content type. It is possible however if you create the content type and the recognizer for users and install then using an extension.xml file as the extension.xml sets the id’s. That’s probably also the way you’d want it.
There is however an even better solution… Dynamically add the content type and recognizer to the client from Java for a single, combined solution. Stay tuned…
How to extend Notes 8: using LiveText with capture groups
I get so many question on how to extend Notes 8 that I finally decided to create a series of blog posts on how to do it. All the posts in the series may be found under the extending_notes8 tag. In this post you’ll need familiarity with how MyWidgets and LiveText works. A basic understanding of regular expressions would be beneficial as well.
This post will set the stage for the next post on how to add Java actions that use LiveText recognizers that contain capture groups. No Java code or Eclipse extension point stuff in this post.
Let me start by explaining what capture groups are. As you probably know you use regular expressions to search for text occurrences when using LiveText. In short a regular expression is a text pattern to search for in a block of text. Regular expressions can be hard to grasp at first but once you “have it” they will become an invaluable tool in your arsenal.
A regular expression can range from the simple to the extremely complex. A simple regular expression to find a product number like OTGC-5431 could look like this one:
[A-Z]{4}-d{4}
This regular expression tells the regular expression engine to search for 4 consecutive, uppercase, letters ([A-Z]{4}) followed by a hyphen (-) followed by 4 digits (d{4}).
Now that’s great but what if this isn’t just a product number but it’s actually a compound data format and that the product number is made up of a product family (OTGC) and a part number (5431) and I needed the two pieces of information separately? Well that’s where capture groups become important.
In regular expressions there is a syntax to signal that the text that you find actually consists of multiple, separate, discrete, pieces of information. As in the example with a product number such as OTGC-5431. This product number consists of two parts – 1) the product family (OTGC) and 2) the part number (5431). If you need access to the product family and part number separately you can use capture groups to split up the product number in the regular expression itself instead of relying on parsing after recognition.
So instead of simply getting a match of “OTGC-5431” you also get information that the product family is “OTGC” and the part number is “5431”.
So how does one use capture groups?
Well you start with the regular expression above and then you add capture groups by simply changing it to be
([A-Z]{4})-(d{4})
Notice how I only added two sets of parentheses. That all. That tells the regular expression engine that the result is made of of two parts. So instead of getting just one result (OTGC-5431) I get three: OTGC-5431, OTGC, 5431 (the match in it’s entirety and the two capture groups).
So how do I use these results in MyWidgets / LiveText? Well let me walk you through an example.
Lets imagine that you have a web service that allows you to search for product numbers but need the product family and part number separately. The syntax is something like http://www.example.com/prodquery?pf=<product family>&pn=<part number> (http://www.example.com/prodquery?pf=OTGC&pn=5431). Let me show you, end to end, how to do this using MyWidgets and LiveText.
- Start by creating a new widget. Choose to create a web widget and click Next.
- Now specify the URL as being “http://www.example.com/prodquery?pf=OTGC&pn=5431” (Please note: The address doesn’t point to anything but it proves the point we need). Now click Next.
- A GET request is fine – just click Next.
- Now the web page is fetched. As we know the URL we specified doesn’t work just click Next.
- In the “Configure a Widget” dialog name the widget “Demo Product Search” and choose “Wire as an action” at the bottom. Then click the “Advanced” tab at the top.
- Put a checkmark in both boxes in the “Configure” column as we need to map both URL parameters to our recognized LiveText. Then click Next.
- We need a new recognizer to recognize our product number. To do this click the “New Recognizer…” button.
- Name the recognizer “Demo Product Number” in the top text box. Now since our recognizer uses two capture groups we need to tell Notes how to map these to our widget (as widget properties) so we need a new Content Type. To do this click the “New Type…” button.
- In the “Configure a Content Type” dialog box you name the parts of the text you recognize. We have two parts so we click the “Add”-button twice and fill the text fields like specified below. We do this to indicate we have two properties called “pf” and “pn”. Then click OK.
- Back in the “Configure a Recognizer” dialog our new Content Type (“Demo Product Number”) has been chosen for us. Now we specify our regular expression with the two capture groups. Then we click the “Add”-button twice and map capture group 1 (the “product family”) to content property “pf” and capture group 2 (the “part number”) to content property “pn” as shown below. Then click OK.
- Back in the “Wire an action to configure a widget” dialog our newly created recognizer has been chosen for us. Now we need to map the widget properties (the parts of the recognizer) to the URL parameters. We do this on the “Advanced” tab so click on that near the top.
- On the “Advanced” tab add a second parameter box by clicking the “Add”-button and map the URL parameters to our widget properties as shown below. Then click Finish.
Now take a deeeeeeeeeeeeeeeeep breath… 🙂
That’s what’s required to create a new widget with a new recognizer and new content type. It may seem like much, and I think it is, but remember that you may now add a second web widget that uses the same recognizer by following the same steps but ignoring step 7-10. Also when you’ve done it a few times it becomes second nature and you use it all the time. I do.
Now we need some text to test on. Create a new e-mail message, add a subject, some text to the body field including a couple of product numbers and e-mail the message to yourself. To make it easier you may copy/paste the below text:
Ullamcorper veniam aliquip duis, vel vero dolore in dolor aliquam dolore lobortis delenit vel duis, magna. Eros iusto, consequat iriure eu enim nulla exerci minim nulla facilisis, ex te ut nulla volutpat qui: OTGC-5431, OTMM-6615. Odio nulla amet ea quis volutpat suscipit exerci eros et dolore feugiat, ea dolor ad, vulputate, delenit enim sed autem tation enim zzril blandit iusto. Dolor facilisi vero feugait iriure, et consequat ut, et euismod ipsum praesent quis duis zzril in hendrerit, at et, dolor hendrerit dignissim. Ut commodo odio consequat, onsectetuer augue dignissim nulla dolore velit.
Now when you open the message from your inbox you should see something like this:
As you can see the Notes client recognized two text strings as shown by the blue dotted lines. If you hover over the text and click the down arrow (will appear to the right of the text) you’ll see a small menu as shown below. From that menu select “Display Demo Product Number Properties”. That will show a dialog box explaining exactly what Notes found and what text goes into which capture groups and hence into which widget properties.
In the next post in the series I’ll show how to use these widget properties from a Java action. Stay tuned…
How to extend Notes 8: coupling custom LiveText recognisers to a Java action
I get so many question on how to extend Notes 8 that I finally decided to create a series of blog posts on how to do it. All the posts in the series may be found under the extending_notes8 tag. In all of the examples I assume a working knowledge of Eclipse and Java programming and how to work with extension points.
For this post I’ll build on the “How to extend Notes 8: coupling LiveText to a Java action“-post and show how to act on your own custom recognizer.
Most of the work is actually the same than for using the built-in recognizers but now you need to utilize your custom recognizer. So you need a recognizer – there are of cause ways to do this programmatically but that’s the focus for another post. For now lets focus on using existing recognizers. Do that by adding your recognizer to Notes – either using MyWidgets or simply importing a recognizer using an extension.xml file such as this one. Remember you need both the recognizer AND the content type it produces (the file has both).
For this example I’ll use the extension.xml I link to above – to install simply drag the link to your MyWidgets sidebar panel. That file gives you a new recognizer with an id of “DCR.Toddlerdemo.885487295” and a content type with an id of “DCCT.demonotes85inspirationproductno.1361861595”. As in previous posts you link your Java action to the content type so make a note of the id.
Now create your Java action class – again implemening org.eclipse.ui.IObjectActionDelegate – and add the org.eclipse.ui.popupMenus extension point to your plugin.xml file using the content type id as below.
<?xml version="1.0" encoding="UTF-8"?> <?eclipse version="3.4"?> <plugin> <extension point="org.eclipse.ui.popupMenus"> <objectContribution id="com.lekkimworld.livetxt.objectContr1" objectClass="com.ibm.rcp.content.IDocumentContent"> <visibility> <and> <objectState name="content.type" value="DCCT.demonotes85inspirationproductno.1361861595"/> <objectState name="contents" value="" /> </and> </visibility> <action class="com.lekkimworld.livetext.MyAction" enablesFor="*" id="com.lekkimworld.livetxt.action1" label="Do stuff!" /> </objectContribution> </extension> </plugin>
Again when it comes to grabbing the contents of the recognized LiveText it comes down to you selectionChanged-method of your Java action. If your custom recognizer doesn’t use capture groups your contents will be in the “contents” property as previously. If you DO use capture groups you need to use the names you specified for the capture groups when you mapped it to the widget – we’ll look at that another time. The example code below simply assumes a single group.
public void selectionChanged(IAction action, ISelection selection) { IDocumentContent doc = null; // cast/adapt selection if (selection instanceof StructuredSelection) { Object sel = ((StructuredSelection)selection).getFirstElement(); if (sel instanceof IDocumentContent) { doc = (IDocumentContent)sel; } } else if (selection instanceof IDocumentContent) { doc = (IDocumentContent)selection; } else { // try and adapt IAdapterManager amgr = Platform.getAdapterManager(); doc = (IDocumentContent)amgr.getAdapter(selection, IDocumentContent.class); } if (null == doc) { this.selection = null; return; } // get number from document property this.selection = doc.getProperties().getProperty("contents"); }
That’s all. Again the main post is knowing how but again 95% of the plugin.xml file and the Java action is the same. In a future post in this series I’ll show how to act upon custom recognizers using capture groups. Stay tuned…
How to extend Notes 8: using the other built in LiveText recognisers with Java actions
I get so many question on how to extend Notes 8 that I finally decided to create a series of blog posts on how to do it. All the posts in the series may be found under the extending_notes8 tag. In all of the examples I assume a working knowledge of Eclipse and Java programming and how to work with extension points.
This second post builds upon the “How to extend Notes 8: coupling LiveText to a Java action“-post posted earlier. Most of the post is the same but you’ll need to change the content type to act on. Read on.
My Notes 8.5 client comes with the follow built in recognizers:
Recognizer | Content type |
Phone number | content.phone |
Address | content.address |
Organization | content.org |
Person | content.person |
Web site | content.web |
The trick is to couple our definitions in plugin.xml to the right content type. So to attach to a recognized web address you need to specify content.web as the content type as shown below:
<?xml version="1.0" encoding="UTF-8"?> <?eclipse version="3.4"?> <plugin> <extension point="org.eclipse.ui.popupMenus"> <objectContribution id="com.lekkimworld.livetext.objectContribution2" objectClass="com.ibm.rcp.content.IDocumentContent"> <action class="com.lekkimworld.livetext.Action1" id="com.lekkimworld.livetext.action2" label="Do stuff with web address!"> </action> <visibility> <and> <objectState name="content.type" value="content.web" /> <objectState name="contents" value="*" /> </and> </visibility> </objectContribution> </extension> </plugin>
Now also change your action to extract the right property from the document. All the IBM recognizers stick the recognized text in the “contents” property so simply grab that. Some of the recognizers (person and address) also have some sub-parts you could extract but I find the recognizers so flaky that I haven’t invested much time in using them. I find the web and phone recognizers the only useful ones. Below is some sample code for the selectionChanged method.
public void selectionChanged(IAction action, ISelection selection) { IDocumentContent doc = null; // cast/adapt selection if (selection instanceof StructuredSelection) { Object sel = ((StructuredSelection)selection).getFirstElement(); if (sel instanceof IDocumentContent) { doc = (IDocumentContent)sel; } } else if (selection instanceof IDocumentContent) { doc = (IDocumentContent)selection; } else { // try and adapt IAdapterManager amgr = Platform.getAdapterManager(); doc = (IDocumentContent)amgr.getAdapter(selection, IDocumentContent.class); } if (null == doc) { this.selection = null; return; } // get text from document property this.selection = doc.getProperties().getProperty("contents"); }