From e023e674020f1a435f7b8c8b9276704f576ea6e5 Mon Sep 17 00:00:00 2001 From: CGantert345 <57003061+CGantert345@users.noreply.github.com> Date: Mon, 29 Mar 2021 14:08:45 +0200 Subject: structure change 1 --- .../ticketLayoutBarcode/TicketLayout.java | 61 ---------------------- 1 file changed, 61 deletions(-) delete mode 100644 src/org/uic/barcode/staticFrame/ticketLayoutBarcode/TicketLayout.java (limited to 'src/org/uic/barcode/staticFrame/ticketLayoutBarcode/TicketLayout.java') diff --git a/src/org/uic/barcode/staticFrame/ticketLayoutBarcode/TicketLayout.java b/src/org/uic/barcode/staticFrame/ticketLayoutBarcode/TicketLayout.java deleted file mode 100644 index 8ca8083..0000000 --- a/src/org/uic/barcode/staticFrame/ticketLayoutBarcode/TicketLayout.java +++ /dev/null @@ -1,61 +0,0 @@ -package org.uic.barcode.staticFrame.ticketLayoutBarcode; - -import java.util.ArrayList; -import java.util.List; - -public class TicketLayout { - - private String layoutStandard = "RCT2"; - - /** The layout elements. */ - private List elements = new ArrayList(); - - - /** - * Gets the layout standard. - * - * @return the layout standard - */ - public String getLayoutStandard() { - if (layoutStandard == null || layoutStandard.length() != 4) { - layoutStandard = "RCT2"; - } - return layoutStandard; - } - - /** - * Sets the layout standard. - * - * @param layoutStandard the new layout standard - */ - public void setLayoutStandard(String layoutStandard) { - this.layoutStandard = layoutStandard; - } - - /** - * Adds the layout element. - * - * @param element the element - */ - public void addLayoutElement(LayoutElement element){ - elements.add(element); - } - - /** - * Removes the layout elements. - */ - public void removeLayoutElements(){ - elements.clear(); - } - - /** - * Gets the elements. - * - * @return the elements - */ - public List getElements(){ - return elements; - } - - -} -- cgit v1.2.3