-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add a new header type and process it in IntelliTable
- Loading branch information
Romuald Rousseau
committed
Nov 20, 2024
1 parent
893a68c
commit 9deb89f
Showing
5 changed files
with
122 additions
and
41 deletions.
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
21 changes: 21 additions & 0 deletions
21
archery/src/main/java/com/github/romualdrousseau/archery/header/DataTableTypeHeader.java
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package com.github.romualdrousseau.archery.header; | ||
|
||
import com.github.romualdrousseau.archery.base.BaseCell; | ||
import com.github.romualdrousseau.archery.base.BaseHeader; | ||
import com.github.romualdrousseau.archery.base.BaseTable; | ||
|
||
public class DataTableTypeHeader extends DataTableHeader { | ||
|
||
public DataTableTypeHeader(final BaseHeader parent) { | ||
super(parent); | ||
} | ||
|
||
public DataTableTypeHeader(final BaseTable table, final BaseCell cell) { | ||
super(table, cell); | ||
} | ||
|
||
@Override | ||
public BaseHeader clone() { | ||
return new DataTableTypeHeader(this); | ||
} | ||
} |
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
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
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