package com.northglass.entity;
|
|
import java.util.ArrayList;
|
import java.util.List;
|
|
public class OPattern {
|
|
private int width;
|
private int height;
|
private int trimLeft;
|
private int trimBottom;
|
|
private List<Step> steps = new ArrayList<Step>();
|
private List<Cutting> cuttings = new ArrayList<Cutting>();
|
private List<Info> infos = new ArrayList<Info>();
|
private List<Shape> shapes = new ArrayList<Shape>();
|
|
public int getWidth() {
|
return width;
|
}
|
|
public void setWidth(int width) {
|
this.width = width;
|
}
|
|
public int getHeight() {
|
return height;
|
}
|
|
public void setHeight(int height) {
|
this.height = height;
|
}
|
|
public int getTrimLeft() {
|
return trimLeft;
|
}
|
|
public void setTrimLeft(int trimLeft) {
|
this.trimLeft = trimLeft;
|
}
|
|
public int getTrimBottom() {
|
return trimBottom;
|
}
|
|
public void setTrimBottom(int trimBottom) {
|
this.trimBottom = trimBottom;
|
}
|
|
public List<Step> getSteps() {
|
return steps;
|
}
|
|
public void setSteps(List<Step> steps) {
|
this.steps = steps;
|
}
|
|
public void addStep(Step step) {
|
this.steps.add(step);
|
}
|
|
public List<Cutting> getCuttings() {
|
return cuttings;
|
}
|
|
public void setCuttings(List<Cutting> cuttings) {
|
this.cuttings = cuttings;
|
}
|
|
public void addCutting(Cutting cutting) {
|
this.cuttings.add(cutting);
|
}
|
|
public List<Info> getInfos() {
|
return infos;
|
}
|
|
public void setInfos(List<Info> infos) {
|
this.infos = infos;
|
}
|
|
public void addInfo(Info info) {
|
this.infos.add(info);
|
}
|
|
public List<Shape> getShapes() {
|
return shapes;
|
}
|
|
public void setShapes(List<Shape> shapes) {
|
this.shapes = shapes;
|
}
|
|
public void addShape(Shape shape) {
|
this.shapes.add(shape);
|
}
|
}
|