Author: scabanovich
Date: 2009-06-23 07:31:50 -0400 (Tue, 23 Jun 2009)
New Revision: 16135
Added:
trunk/jst/plugins/org.jboss.tools.jst.web.kb/src/org/jboss/tools/jst/web/kb/internal/ResourceBundle.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-2808
Added:
trunk/jst/plugins/org.jboss.tools.jst.web.kb/src/org/jboss/tools/jst/web/kb/internal/ResourceBundle.java
===================================================================
---
trunk/jst/plugins/org.jboss.tools.jst.web.kb/src/org/jboss/tools/jst/web/kb/internal/ResourceBundle.java
(rev 0)
+++
trunk/jst/plugins/org.jboss.tools.jst.web.kb/src/org/jboss/tools/jst/web/kb/internal/ResourceBundle.java 2009-06-23
11:31:50 UTC (rev 16135)
@@ -0,0 +1,32 @@
+/*******************************************************************************
+ * Copyright (c) 2007 Red Hat, Inc.
+ * Distributed under license by Red Hat, Inc. All rights reserved.
+ * This program is made available under the terms of the
+ * Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at
http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+package org.jboss.tools.jst.web.kb.internal;
+
+import org.jboss.tools.jst.web.kb.IResourceBundle;
+
+public class ResourceBundle implements IResourceBundle {
+ String basename;
+ String var;
+
+ public ResourceBundle(String basename, String var) {
+ this.basename = basename;
+ this.var = var;
+ }
+
+ public String getBasename() {
+ return basename;
+ }
+
+ public String getVar() {
+ return var;
+ }
+
+}
Property changes on:
trunk/jst/plugins/org.jboss.tools.jst.web.kb/src/org/jboss/tools/jst/web/kb/internal/ResourceBundle.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain