1 /*
2  * PublishRPubs.java
3  *
4  * Copyright (C) 2021 by RStudio, PBC
5  *
6  * Unless you have received this program directly from RStudio pursuant
7  * to the terms of a commercial license agreement with RStudio, then
8  * this program is licensed to you under the terms of version 3 of the
9  * GNU Affero General Public License. This program is distributed WITHOUT
10  * ANY EXPRESS OR IMPLIED WARRANTY, INCLUDING THOSE OF NON-INFRINGEMENT,
11  * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Please refer to the
12  * AGPL (http://www.gnu.org/licenses/agpl-3.0.txt) for more details.
13  *
14  */
15 package org.rstudio.studio.client.rsconnect.ui;
16 
17 import com.google.gwt.core.client.GWT;
18 import com.google.gwt.uibinder.client.UiBinder;
19 import com.google.gwt.user.client.ui.Composite;
20 import com.google.gwt.user.client.ui.Widget;
21 
22 public class PublishRPubs extends Composite
23 {
24    private static PublishRPubsUiBinder uiBinder = GWT
25          .create(PublishRPubsUiBinder.class);
26 
27    interface PublishRPubsUiBinder extends UiBinder<Widget, PublishRPubs>
28    {
29    }
30 
PublishRPubs()31    public PublishRPubs()
32    {
33       initWidget(uiBinder.createAndBindUi(this));
34    }
35 }
36