Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

jarek/beakerx_widgets_1: adapt changes to new beakerx_widgets repo #15

Merged
merged 1 commit into from
Jul 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
package com.twosigma.beakerx.widget;

public interface BeakerxWidgetInfo {
String MODEL_MODULE_VALUE = "beakerx";
String VIEW_MODULE_VALUE = "beakerx";
String MODEL_MODULE_VALUE = "beakerx_widgets";
String VIEW_MODULE_VALUE = "beakerx_widgets";
String MODEL = "model";
String MODEL_UPDATE = "updateData";
}
4 changes: 2 additions & 2 deletions base/src/main/java/com/twosigma/beakerx/widget/Checkbox.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ public class Checkbox extends BoolWidget {

public static String VIEW_NAME_VALUE = "CheckboxView";
public static String MODEL_NAME_VALUE = "CheckboxModel";
public static final String MODEL_MODULE_VALUE = "beakerx";
public static final String VIEW_MODULE_VALUE = "beakerx";
public static final String MODEL_MODULE_VALUE = "beakerx_widgets";
public static final String VIEW_MODULE_VALUE = "beakerx_widgets";

public Checkbox() {
super();
Expand Down
4 changes: 2 additions & 2 deletions base/src/main/java/com/twosigma/beakerx/widget/HTMLPre.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ public class HTMLPre extends StringWidget {

public static final String VIEW_NAME_VALUE = "HTMLPreView";
public static final String MODEL_NAME_VALUE = "HTMLPreModel";
public static final String MODEL_MODULE_VALUE = "beakerx";
public static final String VIEW_MODULE_VALUE = "beakerx";
public static final String MODEL_MODULE_VALUE = "beakerx_widgets";
public static final String VIEW_MODULE_VALUE = "beakerx_widgets";

public HTMLPre() {
super();
Expand Down
4 changes: 2 additions & 2 deletions base/src/main/java/com/twosigma/beakerx/widget/Password.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ public class Password extends StringWidget {

public static final String VIEW_NAME_VALUE = "PasswordView";
public static final String MODEL_NAME_VALUE = "PasswordModel";
public static final String MODEL_MODULE_VALUE = "beakerx";
public static final String VIEW_MODULE_VALUE = "beakerx";
public static final String MODEL_MODULE_VALUE = "beakerx_widgets";
public static final String VIEW_MODULE_VALUE = "beakerx_widgets";

public Password() {
super();
Expand Down
4 changes: 2 additions & 2 deletions base/src/main/java/com/twosigma/beakerx/widget/Text.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ public class Text extends StringWidget {

public static final String VIEW_NAME_VALUE = "TextView";
public static final String MODEL_NAME_VALUE = "TextModel";
public static final String MODEL_MODULE_VALUE = "beakerx";
public static final String VIEW_MODULE_VALUE = "beakerx";
public static final String MODEL_MODULE_VALUE = "beakerx_widgets";
public static final String VIEW_MODULE_VALUE = "beakerx_widgets";

public Text() {
super();
Expand Down
10 changes: 5 additions & 5 deletions base/src/main/java/com/twosigma/beakerx/widget/Textarea.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@

public class Textarea extends StringWidget {

public static final String VIEW_NAME_VALUE = "TextareaView";
public static final String MODEL_NAME_VALUE = "TextareaModel";
public static final String MODEL_MODULE_VALUE = "beakerx";
public static final String VIEW_MODULE_VALUE = "beakerx";
public static final String VIEW_NAME_VALUE = "TextAreaView";
public static final String MODEL_NAME_VALUE = "TextAreaModel";
public static final String MODEL_MODULE_VALUE = "beakerx_widgets";
public static final String VIEW_MODULE_VALUE = "beakerx_widgets";

public Textarea() {
super();
Expand All @@ -47,4 +47,4 @@ public String getViewModuleValue(){
return VIEW_MODULE_VALUE;
}

}
}