summaryrefslogtreecommitdiff
path: root/src/org/noreply/fancydress/type3/HalfPath.java
blob: 73dfb84e7b2c55d6ea768897daae494850d9a7c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* $Id$ */
package org.noreply.fancydress.type3;

public class HalfPath {
	private Hop[] hops;
	public HalfPath(Hop[] hops) {
		this.hops = hops;
	}
	public Hop[] getHops() {
		return hops;
	}
}