01: package org.ontoware.semversion; 02: 03: import java.util.ArrayList; 04: import java.util.List; 05: 06: public class Branch { 07: 08: public Branch() { 09: this .fromRootToRecent = new ArrayList<Version>(); 10: } 11: 12: public List<Version> fromRootToRecent; 13: 14: }