-
Notifications
You must be signed in to change notification settings - Fork 5
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
Create logical definition #78
Conversation
This change is necessary because the spotify docker plugin does not work on Apple Silicon and the plugin itself is no longer maintained.
Replace spotify docker plugin with maven-exec plugin
… and removed "form" from the names
Docker push changes
Docker push changes
Factor out tabs from forms
Co-authored-by: Gheorghe Soimu <[email protected]>
…tegeproject/webprotege-gwt-ui into upload-postcoordination-file
…to upload-postcoordination-file
…e axis (#74) Co-authored-by: Gheorghe Soimu <[email protected]>
Co-authored-by: Gheorghe Soimu <[email protected]>
…tegeproject/webprotege-gwt-ui into upload-postcoordination-file
…e + changes from master (#76)
…tegeproject/webprotege-gwt-ui into upload-postcoordination-file
…-gwt-ui into upload-postcoordination-file � Conflicts: � pom.xml � webprotege-gwt-ui-client/pom.xml � webprotege-gwt-ui-client/src/main/java/edu/stanford/bmir/protege/web/client/inject/ClientProjectModule.java � webprotege-gwt-ui-server-core/pom.xml � webprotege-gwt-ui-server/pom.xml � webprotege-gwt-ui-shared-core/pom.xml � webprotege-gwt-ui-shared/pom.xml
…to create-logical-definition # Conflicts: # webprotege-gwt-ui-client/src/main/java/edu/stanford/bmir/protege/web/client/inject/ClientApplicationModule.java
# Conflicts: # webprotege-gwt-ui-client/src/main/java/edu/stanford/bmir/protege/web/client/inject/ClientProjectModule.java # webprotege-gwt-ui-shared/src/main/java/edu/stanford/bmir/protege/web/shared/postcoordination/PostCoordinationSpecification.java # webprotege-gwt-ui-shared/src/main/java/edu/stanford/bmir/protege/web/shared/postcoordination/WhoficEntityPostCoordinationSpecification.java
this::initializeTable)); | ||
|
||
@Inject | ||
public LogicalDefinitionPortletViewImpl(DispatchServiceManager dispatchServiceManager) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[sugestion]: from what i've seen from other view components in the application most of the actions that are made in a view should be handled by functional interfaces and the actual action should be defined in the presenter.
Normally i don't think you want to make dispatch calls and other major actions directly from the view. The view should be more or less just for showing the model, the presenter should do operations on the model and dictate what the view presents.
I think it's going to be a headache to change any of this now, but we should keep it in mind if we need to implement anything else.
No description provided.