-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed the issue where it wasn't possible to close a notification. Fix…
…ed Item Grid setup not being saved correctly.
- Loading branch information
Showing
5 changed files
with
11 additions
and
20 deletions.
There are no files selected for viewing
22 changes: 5 additions & 17 deletions
22
app-ui/src/main/java/com/mercury/platform/ui/components/panel/grid/ItemCell.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 |
---|---|---|
@@ -1,26 +1,14 @@ | ||
package com.mercury.platform.ui.components.panel.grid; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Data; | ||
|
||
import javax.swing.*; | ||
|
||
@Data | ||
@AllArgsConstructor | ||
public class ItemCell{ | ||
private int x; | ||
private int y; | ||
private JPanel cell; | ||
public ItemCell(int x, int y, JPanel cell) { | ||
this.x = x; | ||
this.y = y; | ||
this.cell = cell; | ||
} | ||
|
||
public int getX() { | ||
return x; | ||
} | ||
|
||
public int getY() { | ||
return y; | ||
} | ||
|
||
public JPanel getCell() { | ||
return cell; | ||
} | ||
} |
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
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