summaryrefslogtreecommitdiffstats
path: root/rba.tool.editor.ui/src/rba/tool/editor/ui/messages
diff options
context:
space:
mode:
authorKenji Hosokawa <khosokawa@jp.adit-jv.com>2021-08-03 18:42:39 +0900
committerKenji Hosokawa <khosokawa@jp.adit-jv.com>2021-08-06 19:32:38 +0900
commitbe4f78978faba3d3ceb88df02a7f93a2e09ff1e0 (patch)
tree1f3f1a96251ac4f655c8a96fc33d5d4ee779cd06 /rba.tool.editor.ui/src/rba/tool/editor/ui/messages
parent71ca7c6cab863767ef30c8bd05b2bbfda8731cb5 (diff)
Initial commit
Bug-AGL: SPEC-4033 Signed-off-by: Kenji Hosokawa <khosokawa@jp.adit-jv.com>
Diffstat (limited to 'rba.tool.editor.ui/src/rba/tool/editor/ui/messages')
-rw-r--r--rba.tool.editor.ui/src/rba/tool/editor/ui/messages/Messages.java29
-rw-r--r--rba.tool.editor.ui/src/rba/tool/editor/ui/messages/messages.properties9
2 files changed, 38 insertions, 0 deletions
diff --git a/rba.tool.editor.ui/src/rba/tool/editor/ui/messages/Messages.java b/rba.tool.editor.ui/src/rba/tool/editor/ui/messages/Messages.java
new file mode 100644
index 0000000..aaebbb9
--- /dev/null
+++ b/rba.tool.editor.ui/src/rba/tool/editor/ui/messages/Messages.java
@@ -0,0 +1,29 @@
+package rba.tool.editor.ui.messages;
+
+import org.eclipse.osgi.util.NLS;
+
+public class Messages extends NLS {
+ public static final String BUNDLE_NAME = "rba.tool.editor.ui.messages.messages";
+
+ public static String PAGE_INFORMATION;
+
+ public static String LBL_IPADDRESS;
+
+ public static String LBL_PORT;
+
+ public static String LBL_APPNAME;
+
+ public static String ERR_EMPTY_IP;
+
+ public static String ERR_EMPTY_PORT;
+
+ public static String PORT_NUMERIC_ERR;
+
+ public static String IP_FORMAT_ERR;
+
+ static {
+ // initialize resource bundle
+ NLS.initializeMessages(BUNDLE_NAME, Messages.class);
+ }
+
+}
diff --git a/rba.tool.editor.ui/src/rba/tool/editor/ui/messages/messages.properties b/rba.tool.editor.ui/src/rba/tool/editor/ui/messages/messages.properties
new file mode 100644
index 0000000..7b4c196
--- /dev/null
+++ b/rba.tool.editor.ui/src/rba/tool/editor/ui/messages/messages.properties
@@ -0,0 +1,9 @@
+PAGE_INFORMATION=This page allows you to set settings for communicate other RBAModel Project
+LBL_IPADDRESS=IP Address :
+LBL_PORT=Port :
+LBL_APPNAME=App Name :
+#Error Message
+ERR_EMPTY_IP=[IP Address] doesn't allow empty value.
+ERR_EMPTY_PORT=[Port] doesn't allow empty value.
+PORT_NUMERIC_ERR=[Port] must be number.
+IP_FORMAT_ERR=[IP Address] is incorrect format. Enter 'localhost' or valid IP Address. \ No newline at end of file