Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
paths
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
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nicolai Hollup Brand
paths
Commits
51d9ff4a
Commit
51d9ff4a
authored
2 years ago
by
Trym Hamer Gudvangen
Browse files
Options
Downloads
Patches
Plain Diff
feat: add a table view for links
parent
2bfe2204
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!34
Feat/create story gui
,
!7
Feat/part three
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/edu/ntnu/idatt2001/group_30/paths/view/components/table/LinkTable.java
+17
-0
17 additions, 0 deletions
...t2001/group_30/paths/view/components/table/LinkTable.java
with
17 additions
and
0 deletions
src/main/java/edu/ntnu/idatt2001/group_30/paths/view/components/table/LinkTable.java
0 → 100644
+
17
−
0
View file @
51d9ff4a
package
edu.ntnu.idatt2001.group_30.paths.view.components.table
;
/**
* This class concerns itself with the aspects intrinsic to a link table.
* @param <Link> The type of the table, represented using a Link object.
*/
public
class
LinkTable
<
Link
>
extends
TableDisplay
<
Link
>{
/**
* This is a constructor which is used to construct a table for different links.
*
* @param tableBuilder The builder used to construct a table, represented using an tableBuilder object.
*/
public
LinkTable
(
Builder
<
Link
>
tableBuilder
)
{
super
(
tableBuilder
);
}
}
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