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

Last change on this file since 3 was 2, checked in by sherbold, 10 years ago
  • initial commit
  • Property svn:mime-type set to text/plain
File size: 503 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 * @author Steffen Herbold
10 */
11public interface IVersionLoader {
12       
13        /**
14         * Sets the location of the data.
15         * @param location location of the data
16         */
17        public void setLocation(String location);
18       
19        /**
20         * Loads the data.
21         * @return the data
22         */
23        public List<SoftwareVersion> load();
24}
Note: See TracBrowser for help on using the repository browser.