Package fold.model
Class FoldFrame.EdgeOrder
- java.lang.Object
-
- fold.model.FoldFrame.EdgeOrder
-
-
Constructor Summary
Constructors Constructor Description EdgeOrder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Edge
getEdge1()
Get the first edge of this definition.Boolean
getEdge1AboveEdge2()
Get if edge1 lies above edge2.Edge
getEdge2()
Get the second edge of this definition.void
setEdge1(Edge edge1)
Set the first edge of this definition.void
setEdge1AboveEdge2(Boolean edge1AboveEdge2)
Set if edge1 lies above edge2.void
setEdge2(Edge edge2)
Set the second edge of this definition.
-
-
-
Method Detail
-
getEdge1
public Edge getEdge1()
Get the first edge of this definition.- Returns:
- The first edge of this definition.
-
setEdge1
public void setEdge1(Edge edge1)
Set the first edge of this definition.- Parameters:
edge1
- The first edge of this definition.
-
getEdge2
public Edge getEdge2()
Get the second edge of this definition.- Returns:
- The second edge of this definition.
-
setEdge2
public void setEdge2(Edge edge2)
Set the second edge of this definition.- Parameters:
edge2
- The second edge of this definition.
-
getEdge1AboveEdge2
public Boolean getEdge1AboveEdge2()
Get if edge1 lies above edge2.- Returns:
- If edge1 lies above edge2, this value is null if there is no stacking defined.
-
setEdge1AboveEdge2
public void setEdge1AboveEdge2(Boolean edge1AboveEdge2)
Set if edge1 lies above edge2.- Parameters:
edge1AboveEdge2
- If edge1 lies above2 or null if there is no stacking defined.
-
-