Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
code_generator
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Christopher
code_generator
Commits
63fc0388
Verified
Commit
63fc0388
authored
Mar 23, 2019
by
Rico Bergmann
Browse files
Options
Downloads
Patches
Plain Diff
Add cross-references to join implementations in JavaDoc
parent
33707cd1
No related branches found
No related tags found
1 merge request
!4
Include ModelJoin support in main development
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/org/rosi_project/model_sync/model_join/representation/grammar/JoinExpression.java
+8
-0
8 additions, 0 deletions
...ync/model_join/representation/grammar/JoinExpression.java
with
8 additions
and
0 deletions
src/main/java/org/rosi_project/model_sync/model_join/representation/grammar/JoinExpression.java
+
8
−
0
View file @
63fc0388
...
@@ -22,6 +22,8 @@ import org.rosi_project.model_sync.model_join.representation.core.ClassResource;
...
@@ -22,6 +22,8 @@ import org.rosi_project.model_sync.model_join.representation.core.ClassResource;
*
*
* @author Rico Bergmann
* @author Rico Bergmann
* @see NaturalJoinExpression
* @see NaturalJoinExpression
* @see OuterJoinExpression
* @see ThetaJoinExpression
*/
*/
public
abstract
class
JoinExpression
implements
Iterable
<
KeepExpression
>
{
public
abstract
class
JoinExpression
implements
Iterable
<
KeepExpression
>
{
...
@@ -32,6 +34,8 @@ public abstract class JoinExpression implements Iterable<KeepExpression> {
...
@@ -32,6 +34,8 @@ public abstract class JoinExpression implements Iterable<KeepExpression> {
/**
/**
* The {@code natural join} combines two classes based on attributes with equal name and type.
* The {@code natural join} combines two classes based on attributes with equal name and type.
*
* @see NaturalJoinExpression
*/
*/
NATURAL
,
NATURAL
,
...
@@ -39,12 +43,16 @@ public abstract class JoinExpression implements Iterable<KeepExpression> {
...
@@ -39,12 +43,16 @@ public abstract class JoinExpression implements Iterable<KeepExpression> {
* The {@code outer join} works like the {@link #NATURAL} one, but leaves instances from one
* The {@code outer join} works like the {@link #NATURAL} one, but leaves instances from one
* class with no corresponding instance in the other class according to the {@code outer join
* class with no corresponding instance in the other class according to the {@code outer join
* type}. See the subclass for details.
* type}. See the subclass for details.
*
* @see OuterJoinExpression
*/
*/
OUTER
,
OUTER
,
/**
/**
* The {@code theta join} is more general than the {@link #NATURAL} and {@link #OUTER} one as
* The {@code theta join} is more general than the {@link #NATURAL} and {@link #OUTER} one as
* it enables an arbitrary criteria to define whether two instances are "joinable" or not.
* it enables an arbitrary criteria to define whether two instances are "joinable" or not.
*
* @see ThetaJoinExpression
*/
*/
THETA
THETA
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment