📄 node.java
字号:
package com.domain;
public class Node {
private int nodeId;
private String nodeName;
private String forwardPath;
private String picPath;
private int parentId;
private Position position;
public Position getPosition() {
return position;
}
public void setPosition(Position position) {
this.position = position;
}
public String getForwardPath() {
return forwardPath;
}
public void setForwardPath(String forwardPath) {
this.forwardPath = forwardPath;
}
public int getNodeId() {
return nodeId;
}
public void setNodeId(int nodeId) {
this.nodeId = nodeId;
}
public String getNodeName() {
return nodeName;
}
public void setNodeName(String nodeName) {
this.nodeName = nodeName;
}
public int getParentId() {
return parentId;
}
public void setParentId(int parentId) {
this.parentId = parentId;
}
public String getPicPath() {
return picPath;
}
public void setPicPath(String picPath) {
this.picPath = picPath;
}
@Override
public int hashCode() {
final int PRIME = 31;
int result = super.hashCode();
result = PRIME * result + ((forwardPath == null) ? 0 : forwardPath.hashCode());
result = PRIME * result + nodeId;
result = PRIME * result + ((nodeName == null) ? 0 : nodeName.hashCode());
result = PRIME * result + parentId;
result = PRIME * result + ((picPath == null) ? 0 : picPath.hashCode());
result = PRIME * result + ((position == null) ? 0 : position.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (!super.equals(obj))
return false;
if (getClass() != obj.getClass())
return false;
final Node other = (Node) obj;
if (forwardPath == null) {
if (other.forwardPath != null)
return false;
} else if (!forwardPath.equals(other.forwardPath))
return false;
if (nodeId != other.nodeId)
return false;
if (nodeName == null) {
if (other.nodeName != null)
return false;
} else if (!nodeName.equals(other.nodeName))
return false;
if (parentId != other.parentId)
return false;
if (picPath == null) {
if (other.picPath != null)
return false;
} else if (!picPath.equals(other.picPath))
return false;
if (position == null) {
if (other.position != null)
return false;
} else if (!position.equals(other.position))
return false;
return true;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -