update verigraph
[parser.git] / verigraph / src / it / polito / verigraph / model / Entry.java
1 /*******************************************************************************
2  * Copyright (c) 2017 Politecnico di Torino and others.
3  *
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Apache License, Version 2.0
6  * which accompanies this distribution, and is available at
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *******************************************************************************/
9 package it.polito.verigraph.model;
10
11 public class Entry {
12     private String direction;
13     private String destination;
14
15     public Entry(String direction, String destination) {
16         this.direction = direction;
17         this.destination = destination;
18     }
19
20     public String getDirection() {
21         return direction;
22     }
23
24     public void setDirection(String direction) {
25         this.direction = direction;
26     }
27
28     public String getDestination() {
29         return destination;
30     }
31
32     public void setDestination(String destination) {
33         this.destination = destination;
34     }
35
36 }