Skip to main content
summaryrefslogtreecommitdiffstats
blob: b3d6b0a7bdd597b15583336c55ce929de50d2d2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*
 * Created on May 19, 2011
 *
 * PLACE_YOUR_DISTRIBUTION_STATEMENT_RIGHT_HERE
 */
package org.eclipse.osee.ats.core.validator;

import java.util.Collection;
import java.util.Collections;
import java.util.Date;

/**
 * @author Donald G. Dunne
 */
public class MockValueProvider implements IValueProvider {

   private final Collection<String> values;
   private final String name;

   public MockValueProvider(Collection<String> values) {
      this("test", values);
   }

   public MockValueProvider(String name, Collection<String> values) {
      this.name = name;
      this.values = values;
   }

   @Override
   public String getName() {
      return name;
   }

   @Override
   public boolean isEmpty() {
      return values.isEmpty();
   }

   @Override
   public Collection<String> getValues() {
      return values;
   }

   @Override
   public Collection<Date> getDateValues() {
      return Collections.emptyList();
   }

}

Back to the top