Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Jury2015-01-22 20:33:45 +0000
committerAndy Jury2015-01-22 20:33:45 +0000
commit6a04cfba74de59fc5df76eb526176ca9ba2bbef4 (patch)
tree0b1d5f99f2c64be0b7a0ab8c074150953fcffd98
parent053513c4b8f6823aff64c10c0151dac88993ff5b (diff)
parent9db48e01e3524dde4e775122fce1fe617f410fd3 (diff)
downloadorg.eclipse.ote-6a04cfba74de59fc5df76eb526176ca9ba2bbef4.tar.gz
org.eclipse.ote-6a04cfba74de59fc5df76eb526176ca9ba2bbef4.tar.xz
org.eclipse.ote-6a04cfba74de59fc5df76eb526176ca9ba2bbef4.zip
-rw-r--r--org.eclipse.ote.bytemessage/src/org/eclipse/ote/bytemessage/OteByteMessageUtil.java5
-rw-r--r--org.eclipse.ote.ui.message.view/src/org/eclipse/ote/ui/message/view/MessageSearchView.java2
2 files changed, 6 insertions, 1 deletions
diff --git a/org.eclipse.ote.bytemessage/src/org/eclipse/ote/bytemessage/OteByteMessageUtil.java b/org.eclipse.ote.bytemessage/src/org/eclipse/ote/bytemessage/OteByteMessageUtil.java
index 81e360123..d4c236910 100644
--- a/org.eclipse.ote.bytemessage/src/org/eclipse/ote/bytemessage/OteByteMessageUtil.java
+++ b/org.eclipse.ote.bytemessage/src/org/eclipse/ote/bytemessage/OteByteMessageUtil.java
@@ -39,6 +39,11 @@ public class OteByteMessageUtil {
eventAdmin.sendEvent(newevent);
}
+ public static void postEvent(OteByteMessage message) {
+ EventAdmin eventAdmin = ServiceUtility.getService(EventAdmin.class);
+ postEvent(message, eventAdmin);
+ }
+
public static void postEvent(OteByteMessage message, EventAdmin eventAdmin) {
message.getHeader().UUID_HIGH.setNoLog((long) 0x0);
message.getHeader().UUID_LOW.setNoLog((long) 0x0);
diff --git a/org.eclipse.ote.ui.message.view/src/org/eclipse/ote/ui/message/view/MessageSearchView.java b/org.eclipse.ote.ui.message.view/src/org/eclipse/ote/ui/message/view/MessageSearchView.java
index 4ef5926c8..e671f28af 100644
--- a/org.eclipse.ote.ui.message.view/src/org/eclipse/ote/ui/message/view/MessageSearchView.java
+++ b/org.eclipse.ote.ui.message.view/src/org/eclipse/ote/ui/message/view/MessageSearchView.java
@@ -177,7 +177,7 @@ public class MessageSearchView extends ViewPart implements MessageInfoSelectionL
grp.setLayout(layout);
Label l = new Label(grp, SWT.NULL);
l.setText("Search:");
- l.setToolTipText("Enter a search string.\n* is the wildcard.\nAn integer will search message ids.\n* will return all messages.\n** will return all messages that have elements.");
+ l.setToolTipText("Enter a search string.\n* is the wildcard.\nAn integer will search message ids.\n* will return all messages.\n** will return all messages that have elements.\nPUB:<SU> SUB:<SU> to find who uses a message.");
searchText = new Text(grp, SWT.SINGLE | SWT.BORDER);
searchText.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));

Back to the top