Skip to content

Commit

Permalink
formating
Browse files Browse the repository at this point in the history
  • Loading branch information
JantBogard committed Nov 25, 2024
1 parent 959de16 commit 4f43182
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
<option name="ASSERT_STATEMENT_COLON_ON_NEXT_LINE" value="true" />
<option name="VARIABLE_ANNOTATION_WRAP" value="2" />
<indentOptions>
<option name="CONTINUATION_INDENT_SIZE" value="16" />
<option name="CONTINUATION_INDENT_SIZE" value="4" />
<option name="USE_TAB_CHARACTER" value="true" />
</indentOptions>
</codeStyleSettings>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,16 @@ public class InventoryWardBrowser extends ModalJFrame implements InventoryListen

private static final long serialVersionUID = 1L;
private static final int PAGE_SIZE = 50;
private final String[] pColums = {
MessageBundle.getMessage("angal.inventory.referenceshow.col").toUpperCase(),
MessageBundle.getMessage("angal.common.ward.col").toUpperCase(),
MessageBundle.getMessage("angal.common.date.col").toUpperCase(),
MessageBundle.getMessage("angal.inventory.status.col").toUpperCase(),
MessageBundle.getMessage("angal.common.user.col").toUpperCase()
};
private final int[] pColumwidth = { 150, 150, 100, 100, 150 };
private final MedicalInventoryManager medicalInventoryManager = Context.getApplicationContext().getBean(MedicalInventoryManager.class);
private final WardBrowserManager wardBrowserManager = Context.getApplicationContext().getBean(WardBrowserManager.class);
JButton next;
JButton previous;
JComboBox<Integer> pagesCombo = new JComboBox<>();
Expand All @@ -91,20 +101,10 @@ public class InventoryWardBrowser extends ModalJFrame implements InventoryListen
private JButton viewButton;
private JScrollPane scrollPaneInventory;
private JTable jTableInventory;
private final String[] pColums = {
MessageBundle.getMessage("angal.inventory.referenceshow.col").toUpperCase(),
MessageBundle.getMessage("angal.common.ward.col").toUpperCase(),
MessageBundle.getMessage("angal.common.date.col").toUpperCase(),
MessageBundle.getMessage("angal.inventory.status.col").toUpperCase(),
MessageBundle.getMessage("angal.common.user.col").toUpperCase()
};
private final int[] pColumwidth = { 150, 150, 100, 100, 150 };
private JComboBox<String> statusComboBox;
private JLabel statusLabel;
private int startIndex;
private int totalRows;
private final MedicalInventoryManager medicalInventoryManager = Context.getApplicationContext().getBean(MedicalInventoryManager.class);
private final WardBrowserManager wardBrowserManager = Context.getApplicationContext().getBean(WardBrowserManager.class);
private List<MedicalInventory> inventoryList;

public InventoryWardBrowser() {
Expand Down

0 comments on commit 4f43182

Please sign in to comment.