[jbpm-commits] JBoss JBPM SVN: r5379 - in projects/gwt-console/branches/sam/sam: gui/src/main/java/org/jboss/bpm and 3 other directories.

do-not-reply at jboss.org do-not-reply at jboss.org
Wed Jul 29 09:56:10 EDT 2009


Author: heiko.braun at jboss.com
Date: 2009-07-29 09:56:10 -0400 (Wed, 29 Jul 2009)
New Revision: 5379

Added:
   projects/gwt-console/branches/sam/sam/gui/src/main/java/org/jboss/bpm/
   projects/gwt-console/branches/sam/sam/gui/src/main/java/org/jboss/bpm/console/
   projects/gwt-console/branches/sam/sam/gui/src/main/java/org/jboss/bpm/console/client/
   projects/gwt-console/branches/sam/sam/gui/src/main/java/org/jboss/bpm/console/client/SAMEditor.java
Removed:
   projects/gwt-console/branches/sam/sam/gui/src/main/java/org/jboss/sam/
Modified:
   projects/gwt-console/branches/sam/sam/profile/src/main/resources/org/jboss/bpm/console/workspace.cfg
Log:
retain client package. otherwise the GWT doesn't pick up extension points

Copied: projects/gwt-console/branches/sam/sam/gui/src/main/java/org/jboss/bpm/console/client/SAMEditor.java (from rev 5377, projects/gwt-console/branches/sam/sam/gui/src/main/java/org/jboss/sam/console/client/SAMEditor.java)
===================================================================
--- projects/gwt-console/branches/sam/sam/gui/src/main/java/org/jboss/bpm/console/client/SAMEditor.java	                        (rev 0)
+++ projects/gwt-console/branches/sam/sam/gui/src/main/java/org/jboss/bpm/console/client/SAMEditor.java	2009-07-29 13:56:10 UTC (rev 5379)
@@ -0,0 +1,65 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.bpm.console.client;
+
+import org.jboss.bpm.console.client.Editor;
+import org.jboss.bpm.console.client.MenuSection;
+import org.jboss.bpm.console.client.ApplicationContext;
+
+/**
+ * @author Heiko.Braun <heiko.braun at jboss.com>
+ */
+public class SAMEditor extends Editor
+{
+  public final static String ID = SAMEditor.class.getName();
+
+  private boolean initialized;
+
+  public SAMEditor(ApplicationContext appContext)
+  {
+    super(appContext);
+  }
+
+  public void initialize()
+  {
+    if(!initialized)
+    {
+
+      initialized = true;
+    }
+  }
+
+  public String getEditorId()
+  {
+    return ID;
+  }
+
+  public String getTitle()
+  {
+    return "Overview";
+  }
+
+  public MenuSection provideMenuSection()
+  {
+    return null;  
+  }
+}

Modified: projects/gwt-console/branches/sam/sam/profile/src/main/resources/org/jboss/bpm/console/workspace.cfg
===================================================================
--- projects/gwt-console/branches/sam/sam/profile/src/main/resources/org/jboss/bpm/console/workspace.cfg	2009-07-29 13:52:30 UTC (rev 5378)
+++ projects/gwt-console/branches/sam/sam/profile/src/main/resources/org/jboss/bpm/console/workspace.cfg	2009-07-29 13:56:10 UTC (rev 5379)
@@ -1 +1 @@
-org.jboss.sam.console.client.SAMEditor
\ No newline at end of file
+org.jboss.bpm.console.client.SAMEditor
\ No newline at end of file



More information about the jbpm-commits mailing list