Skip to content
Snippets Groups Projects
Commit 51d9ff4a authored by Trym Hamer Gudvangen's avatar Trym Hamer Gudvangen
Browse files

feat: add a table view for links

parent 2bfe2204
No related branches found
No related tags found
2 merge requests!34Feat/create story gui,!7Feat/part three
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);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment