-
Notifications
You must be signed in to change notification settings - Fork 3
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
[WIP] Refactoring and cleanup #49
Open
Squareys
wants to merge
25
commits into
master
Choose a base branch
from
refactoring-and-cleanup
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
f5e223a
Refactor scijava integration
dietzc ff8a056
Add javadoc to everything and cleanup.
Squareys 82eeeac
Rename ConverterCacheService to KNIMEConverterService
Squareys 3fbb32d
Avoid deprecated setResolved method
Squareys f23b70d
Always use NodeModuleOutputChangedListener, even for single row outputs
Squareys b3c4f7a
Pre is never null
Squareys 215d97f
Fix MultiOutputListener @Parameters not being marked resolved
Squareys fe6e1bb
Avoid deprecated ResourceAwareClassLoader constructor
Squareys fbd8bef
Move per-node-execution preprocessing into private method.
Squareys c811481
Fix tiny bug
Squareys 76acbea
Rename KnimeProcessorTest to NodeModuleTest
Squareys 8d9bfd4
Avoid null checking getWidgetStyle()
Squareys 24bc5ad
More javadoc
Squareys 488620f
Use NodeLogger for logging in NodeModules and implement KNIMELogService
Squareys feeafa9
NodeModuleTest: Adapt to API changes in org.knime.scijava.commands
Squareys 2bd9815
Specify 'manualPush' in constructor instead of setter.
Squareys 6ea385c
Add tests for NodeModule and DefaultNodeModuleService
Squareys 71e1053
Add getPreferredDataType(Class) to KNIMEConverterService
Squareys d2420bc
Delegate exception during notifyListener()
Squareys 624b28f
Simplyfy getting output DataType for module output.
Squareys 911fe46
Some Code cleanup
Squareys 4e0736e
Remove unused imports
Squareys 255e9fc
Use better way of detecting synthetic "result" ouput
Squareys 321c004
Merge branch 'master' into refactoring-and-cleanup
dietzc a1480f0
fixes
dietzc File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
uh, this is really state-driven now. can we avoid this method, e.g. by determining in the constructor if manual or not?! just asking, not saying it's nicer.
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.
Well, since it is only called immediately after the constructor, I can put it into the constructor, makes sense :)