From c95b85052cd0561d66524d4eca64df0e4159f192 Mon Sep 17 00:00:00 2001 From: felmer <felmer> Date: Tue, 2 Sep 2008 13:35:50 +0000 Subject: [PATCH] LMS-445 add lost Client class SVN: 8185 --- .../ch/systemsx/cisd/openbis/OpenBIS.gwt.xml | 2 +- .../client/web/client/application/Client.java | 37 +++++++++++++++++++ 2 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/Client.java diff --git a/openbis/source/java/ch/systemsx/cisd/openbis/OpenBIS.gwt.xml b/openbis/source/java/ch/systemsx/cisd/openbis/OpenBIS.gwt.xml index b46c8ada705..757bcb57a2d 100644 --- a/openbis/source/java/ch/systemsx/cisd/openbis/OpenBIS.gwt.xml +++ b/openbis/source/java/ch/systemsx/cisd/openbis/OpenBIS.gwt.xml @@ -12,7 +12,7 @@ // Source path elements to Java classes to be compiled to JavaScript --> <source path="generic/client/web/client" /> - <--source path="plugin/hcs/client/web/client" /--> + <!--source path="plugin/hcs/client/web/client" /--> <!-- Do not define servlets here, use web.xml --> diff --git a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/Client.java b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/Client.java new file mode 100644 index 00000000000..1b18d9bab1f --- /dev/null +++ b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/Client.java @@ -0,0 +1,37 @@ +/* + * Copyright 2008 ETH Zuerich, CISD + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package ch.systemsx.cisd.openbis.generic.client.web.client.application; + +import com.google.gwt.core.client.EntryPoint; +import com.google.gwt.user.client.ui.Label; +import com.google.gwt.user.client.ui.RootPanel; + +/** + * + * + * @author Franz-Josef Elmer + */ +public class Client implements EntryPoint +{ + + public void onModuleLoad() + { + RootPanel.get().add(new Label("openBIS comong soon...")); + + } + +} -- GitLab