Last change
on this file since 38 was
32,
checked in by ftrautsch, 10 years ago
|
integrating decent into crosspare
|
-
Property svn:mime-type set to
text/plain
|
File size:
535 bytes
|
Line | |
---|
1 | package de.ugoe.cs.cpdp.loader;
|
---|
2 |
|
---|
3 | import java.util.List;
|
---|
4 |
|
---|
5 | import 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 | */
|
---|
12 | public 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 |
|
---|
29 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.