Advertisement
Guest User

Untitled

a guest
Apr 19th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. public class Node {
  2.  
  3. Term x;
  4.  
  5. Node Next;
  6. char poly;
  7. public Node(Term x) {
  8. super();
  9. this.x = x;
  10. }
  11. public Term getX() {
  12. return x;
  13. }
  14. public void setX(Term x) {
  15. this.x = x;
  16. }
  17. public Node getNext() {
  18. return Next;
  19. }
  20. public void setNext(Node next) {
  21. Next = next;
  22. }
  23.  
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement