source: trunk/CrossPare/src/de/ugoe/cs/cpdp/loader/IVersionLoader.java @ 14

Last change on this file since 14 was 4, checked in by sherbold, 10 years ago
  • Property svn:mime-type set to text/plain
File size: 533 bytes
Line 
1package de.ugoe.cs.cpdp.loader;
2
3import java.util.List;
4
5import de.ugoe.cs.cpdp.versions.SoftwareVersion;
6
7/**
8 * Implements the interface for loading software versions from a data source.
9 *
10 * @author Steffen Herbold
11 */
12public interface IVersionLoader {
13
14        /**
15         * Sets the location of the data.
16         *
17         * @param location
18         *            location of the data
19         */
20        public void setLocation(String location);
21
22        /**
23         * Loads the data.
24         *
25         * @return the data
26         */
27        public List<SoftwareVersion> load();
28}
Note: See TracBrowser for help on using the repository browser.