Skip to main content
summaryrefslogtreecommitdiffstats
blob: 2b8d0f2a19c853cd568dd013f44a6d29002f893f (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*******************************************************************************
 * Copyright (c) 2005, 2006 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 * yyyymmdd bug      Email and other contact information
 * -------- -------- -----------------------------------------------------------
 * 20060131 121071   rsinha@ca.ibm.com - Rupam Kuehner          
 *******************************************************************************/

package org.eclipse.jst.ws.internal.consumption.common;


import java.util.ArrayList;
import java.util.Iterator;

import org.eclipse.wst.common.project.facet.core.IProjectFacetVersion;

public class RequiredFacetVersion
{
  private IProjectFacetVersion projectFacetVersion;
  private boolean allowNewer;
  private IProjectFacetVersion[] allowedProjectFacetVersions;
  
  public boolean getAllowNewer()
  {
    return allowNewer;
  }
  public void setAllowNewer(boolean allowNewer)
  {
    this.allowNewer = allowNewer;
  }
  public IProjectFacetVersion getProjectFacetVersion()
  {
    return projectFacetVersion;
  }
  public void setProjectFacetVersion(IProjectFacetVersion projectFacetVersion)
  {
    this.projectFacetVersion = projectFacetVersion;
  }  
  public IProjectFacetVersion[] getAllowedProjectFacetVersions()  
  {
    if (allowedProjectFacetVersions == null)
    {
      ArrayList versions = new ArrayList();
      IProjectFacetVersion minpfv = getProjectFacetVersion();
      versions.add(minpfv);
      //If allow-newer is true, add all the versions greater than the min version.
      if (getAllowNewer())
      {
        String minVersion = minpfv.getVersionString();
        Iterator allVersionsItr = minpfv.getProjectFacet().getVersions().iterator();
        while (allVersionsItr.hasNext())
        {
          IProjectFacetVersion testpfv = (IProjectFacetVersion)allVersionsItr.next();
          String testVersion = testpfv.getVersionString();
          if (FacetUtils.greaterThan(testVersion, minVersion))
          {
            versions.add(testpfv);              
          }
        }      
      }
      
      allowedProjectFacetVersions = (IProjectFacetVersion[])versions.toArray(new IProjectFacetVersion[0]);      
    }
    
    return allowedProjectFacetVersions;
  }
  
}

Back to the top